[Webkit-unassigned] [Bug 51263] New: Message code generation scripts should handle case of platforms that don't use synchronous message to the WebProcess

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Dec 17 10:22:06 PST 2010


https://bugs.webkit.org/show_bug.cgi?id=51263

           Summary: Message code generation scripts should handle case of
                    platforms that don't use synchronous message to the
                    WebProcess
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Tools / Tests
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: aroben at apple.com


Mac and Windows both use synchronous messages to the WebProcess.
Platforms that don't have synchronous messages end up with generated code that doesn't compile.

See the code below:

CoreIPC::SyncReplyMode WebPage::didReceiveSyncWebPageMessage(CoreIPC::Connection*, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments, CoreIPC::ArgumentEncoder* reply)
{
    switch (messageID.get<Messages::WebPage::Kind>()) {
    default:
        break;
    }

    ASSERT_NOT_REACHED();
    return CoreIPC::AutomaticReply;
}

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list