diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-22 15:47:42 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-22 15:47:42 +0000 |
commit | f3579d1e17b14df5aedf167d30073298826ba50a (patch) | |
tree | bbde8fb131a1696ad92767774ccf10941e0cca1b /ppapi/proxy/dispatcher.cc | |
parent | 2bda8a12388301bec4798644691c61abb35a0a14 (diff) | |
download | chromium_src-f3579d1e17b14df5aedf167d30073298826ba50a.zip chromium_src-f3579d1e17b14df5aedf167d30073298826ba50a.tar.gz chromium_src-f3579d1e17b14df5aedf167d30073298826ba50a.tar.bz2 |
Fix input event resource proxying functions in the Chrome IPC proxy. The
message-specific PPB interfaces were'nt hooked up.
Review URL: http://codereview.chromium.org/7479008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93639 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy/dispatcher.cc')
-rw-r--r-- | ppapi/proxy/dispatcher.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ppapi/proxy/dispatcher.cc b/ppapi/proxy/dispatcher.cc index 5de70c0..db01aa7 100644 --- a/ppapi/proxy/dispatcher.cc +++ b/ppapi/proxy/dispatcher.cc @@ -132,13 +132,16 @@ InterfaceList::InterfaceList() { AddPPB(PPB_Flash_Clipboard_Proxy::GetInfo()); AddPPB(PPB_Flash_File_FileRef_Proxy::GetInfo()); AddPPB(PPB_Flash_File_ModuleLocal_Proxy::GetInfo()); - AddPPB(PPB_Flash_Proxy::GetInfo()); AddPPB(PPB_Flash_Menu_Proxy::GetInfo()); + AddPPB(PPB_Flash_Proxy::GetInfo()); AddPPB(PPB_Flash_TCPSocket_Proxy::GetInfo()); AddPPB(PPB_Font_Proxy::GetInfo()); AddPPB(PPB_Graphics2D_Proxy::GetInfo()); AddPPB(PPB_ImageData_Proxy::GetInfo()); - AddPPB(PPB_InputEvent_Proxy::GetInfo()); + AddPPB(PPB_InputEvent_Proxy::GetInputEventInfo()); + AddPPB(PPB_InputEvent_Proxy::GetKeyboardInputEventInfo()); + AddPPB(PPB_InputEvent_Proxy::GetMouseInputEventInfo()); + AddPPB(PPB_InputEvent_Proxy::GetWheelInputEventInfo()); AddPPB(PPB_Instance_Proxy::GetInfo0_5()); AddPPB(PPB_Instance_Proxy::GetInfo1_0()); AddPPB(PPB_Instance_Proxy::GetInfoFullscreen()); |