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

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

Issue 9188045: Introduce PPB_Flash_MessageLoop interface for Pepper Flash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync 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
Index: webkit/plugins/ppapi/resource_creation_impl.cc
diff --git a/webkit/plugins/ppapi/resource_creation_impl.cc b/webkit/plugins/ppapi/resource_creation_impl.cc
index 1f3943b27afdcde18f43fc504472c55e81b66ca2..db94adc8ad931ac1da7e474044ae119261eca461 100644
--- a/webkit/plugins/ppapi/resource_creation_impl.cc
+++ b/webkit/plugins/ppapi/resource_creation_impl.cc
@@ -20,6 +20,7 @@
#include "webkit/plugins/ppapi/ppb_file_ref_impl.h"
#include "webkit/plugins/ppapi/ppb_file_system_impl.h"
#include "webkit/plugins/ppapi/ppb_flash_menu_impl.h"
+#include "webkit/plugins/ppapi/ppb_flash_message_loop_impl.h"
#include "webkit/plugins/ppapi/ppb_flash_net_connector_impl.h"
#include "webkit/plugins/ppapi/ppb_font_impl.h"
#include "webkit/plugins/ppapi/ppb_graphics_2d_impl.h"
@@ -134,6 +135,10 @@ PP_Resource ResourceCreationImpl::CreateFlashMenu(
return PPB_Flash_Menu_Impl::Create(instance, menu_data);
}
+PP_Resource ResourceCreationImpl::CreateFlashMessageLoop(PP_Instance instance) {
+ return PPB_Flash_MessageLoop_Impl::Create(instance);
+}
+
PP_Resource ResourceCreationImpl::CreateFlashNetConnector(
PP_Instance instance) {
return (new PPB_Flash_NetConnector_Impl(instance))->GetReference();

Powered by Google App Engine
This is Rietveld 408576698