Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: webkit/plugins/ppapi/plugin_module.cc

Issue 9188045: Introduce PPB_Flash_MessageLoop interface for Pepper Flash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use base::Callback instead of PP_CompletionCallback in RunFromHostProxy(). Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/webkit_glue.gypi ('k') | webkit/plugins/ppapi/ppb_flash_message_loop_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/plugin_module.cc
diff --git a/webkit/plugins/ppapi/plugin_module.cc b/webkit/plugins/ppapi/plugin_module.cc
index 1c2ea1bb6b0a0fe71203bc14b51a2b5017cc31c8..57a3645a9b4f7a86d250be43486e0a6cb26a3415 100644
--- a/webkit/plugins/ppapi/plugin_module.cc
+++ b/webkit/plugins/ppapi/plugin_module.cc
@@ -70,6 +70,7 @@
#include "ppapi/c/private/ppb_flash_clipboard.h"
#include "ppapi/c/private/ppb_flash_file.h"
#include "ppapi/c/private/ppb_flash_fullscreen.h"
+#include "ppapi/c/private/ppb_flash_message_loop.h"
#include "ppapi/c/private/ppb_flash_tcp_socket.h"
#include "ppapi/c/private/ppb_gpu_blacklist_private.h"
#include "ppapi/c/private/ppb_instance_private.h"
@@ -321,6 +322,8 @@ const void* GetInterface(const char* name) {
return PPB_Flash_File_ModuleLocal_Impl::GetInterface();
if (strcmp(name, PPB_FLASH_MENU_INTERFACE_0_2) == 0)
return ::ppapi::thunk::GetPPB_Flash_Menu_0_2_Thunk();
+ if (strcmp(name, PPB_FLASH_MESSAGELOOP_INTERFACE_0_1) == 0)
+ return ::ppapi::thunk::GetPPB_Flash_MessageLoop_0_1_Thunk();
if (strcmp(name, PPB_FLASH_TCPSOCKET_INTERFACE_0_2) == 0)
return ::ppapi::thunk::GetPPB_TCPSocket_Private_0_3_Thunk();
if (strcmp(name, PPB_FULLSCREEN_DEV_INTERFACE_0_5) == 0)
« no previous file with comments | « webkit/glue/webkit_glue.gypi ('k') | webkit/plugins/ppapi/ppb_flash_message_loop_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698