Bug 49062

Summary: Generate the messages sent to the WebProcessProxy
Product: WebKit Reporter: Sam Weinig <sam>
Component: WebKit2Assignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal    
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: PC   
OS: OS X 10.5   
Attachments:
Description Flags
Patch aroben: review+

Sam Weinig
Reported 2010-11-05 03:31:38 PDT
Generate the messages sent to the WebProcessProxy
Attachments
Patch (37.28 KB, patch)
2010-11-05 03:43 PDT, Sam Weinig
aroben: review+
Sam Weinig
Comment 1 2010-11-05 03:43:53 PDT
Adam Roben (:aroben)
Comment 2 2010-11-05 08:27:34 PDT
Comment on attachment 73050 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=73050&action=review > WebKit2/Scripts/webkit2/messages.py:253 > + 'WebCore::PluginData.h', The ".h" seems wrong. > WebKit2/UIProcess/WebProcessProxy.cpp:232 > +void WebProcessProxy::didPerformClientRedirect(uint64_t pageID, const String& sourceURLString, const String& destinationURLString, uint64_t frameID) > +{ > + m_context->didPerformClientRedirect(webFrame(frameID), sourceURLString, destinationURLString); > +} Will the unused pageID variable cause compiler warnings/errors? Why are we sending along the pageID if we don't need it? (These questions apply to a few other functions in this file.)
Sam Weinig
Comment 3 2010-11-05 09:16:25 PDT
(In reply to comment #2) > (From update of attachment 73050 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=73050&action=review > > > WebKit2/Scripts/webkit2/messages.py:253 > > + 'WebCore::PluginData.h', > > The ".h" seems wrong. Fixed. This would have broken clang and msvc! > > > WebKit2/UIProcess/WebProcessProxy.cpp:232 > > +void WebProcessProxy::didPerformClientRedirect(uint64_t pageID, const String& sourceURLString, const String& destinationURLString, uint64_t frameID) > > +{ > > + m_context->didPerformClientRedirect(webFrame(frameID), sourceURLString, destinationURLString); > > +} > > Will the unused pageID variable cause compiler warnings/errors? > > Why are we sending along the pageID if we don't need it? > > (These questions apply to a few other functions in this file.) Not sure, but it isn't new. I will talk to Anders/Brady when I get a chance.
Sam Weinig
Comment 4 2010-11-05 09:23:41 PDT
Note You need to log in before you can comment on or make changes to this bug.