Changeset 150681 in webkit


Ignore:
Timestamp:
May 24, 2013 9:20:37 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[Qt][GTK] Build fix after r150669
https://bugs.webkit.org/show_bug.cgi?id=116751

Patch by Seokju Kwon <Seokju Kwon> on 2013-05-24
Reviewed by Christophe Dumez.

  • GNUmakefile.list.am:
  • Target.pri:
  • WebProcess/WebCoreSupport/gtk/WebEditorClientGtk.cpp:

(WebKit::WebEditorClient::getEditorCommandsForKeyEvent):

Location:
trunk/Source/WebKit2
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r150679 r150681  
     12013-05-24  Seokju Kwon  <seokju.kwon@gmail.com>
     2
     3        [Qt][GTK] Build fix after r150669
     4        https://bugs.webkit.org/show_bug.cgi?id=116751
     5
     6        Reviewed by Christophe Dumez.
     7
     8        * GNUmakefile.list.am:
     9        * Target.pri:
     10        * WebProcess/WebCoreSupport/gtk/WebEditorClientGtk.cpp:
     11        (WebKit::WebEditorClient::getEditorCommandsForKeyEvent):
     12
    1132013-05-24  Seokju Kwon  <seokju.kwon@gmail.com>
    214
  • trunk/Source/WebKit2/GNUmakefile.list.am

    r150325 r150681  
    271271        Source/WebKit2/Platform/CoreIPC/MessageReceiverMap.cpp \
    272272        Source/WebKit2/Platform/CoreIPC/MessageReceiverMap.h \
     273        Source/WebKit2/Platform/CoreIPC/MessageSender.cpp \
    273274        Source/WebKit2/Platform/CoreIPC/MessageSender.h \
    274275        Source/WebKit2/Platform/CoreIPC/StringReference.cpp \
  • trunk/Source/WebKit2/Target.pri

    r150327 r150681  
    391391    Platform/CoreIPC/MessageEncoder.cpp \
    392392    Platform/CoreIPC/MessageReceiverMap.cpp \
     393    Platform/CoreIPC/MessageSender.cpp \
    393394    Platform/CoreIPC/StringReference.cpp \
    394395    Platform/Logging.cpp \
  • trunk/Source/WebKit2/WebProcess/WebCoreSupport/gtk/WebEditorClientGtk.cpp

    r150140 r150681  
    4242    /* First try to interpret the command in the UI and get the commands.
    4343       UI needs to receive event type because only knows current NativeWebKeyboardEvent.*/
    44     WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::GetEditorCommandsForKeyEvent(event->type()),
     44    WebProcess::shared().parentProcessConnection()->sendSync(Messages::WebPageProxy::GetEditorCommandsForKeyEvent(event->type()),
    4545                                                Messages::WebPageProxy::GetEditorCommandsForKeyEvent::Reply(pendingEditorCommands),
    4646                                                m_page->pageID(), CoreIPC::Connection::NoTimeout);
Note: See TracChangeset for help on using the changeset viewer.