summaryrefslogtreecommitdiffstats
path: root/webkit/plugins
diff options
context:
space:
mode:
authorviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-24 21:19:24 +0000
committerviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-24 21:19:24 +0000
commit8600e026250582ece456f0fe6c24e28a4f94d89b (patch)
treedd609e24ba34a6bebc639f3b80d7cfba6a05f03d /webkit/plugins
parentcf0095900ccfc6f65654be2b3961cf1783483f3f (diff)
downloadchromium_src-8600e026250582ece456f0fe6c24e28a4f94d89b.zip
chromium_src-8600e026250582ece456f0fe6c24e28a4f94d89b.tar.gz
chromium_src-8600e026250582ece456f0fe6c24e28a4f94d89b.tar.bz2
Pepper: Actually add PPB_FLASH_FILE_MODULE_LOCAL_INTERFACE to GetInterface().
BUG=none TEST=updated Flapper actually works Review URL: http://codereview.chromium.org/6580045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75949 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/plugins')
-rw-r--r--webkit/plugins/ppapi/plugin_module.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/webkit/plugins/ppapi/plugin_module.cc b/webkit/plugins/ppapi/plugin_module.cc
index a20fe45..da30e42 100644
--- a/webkit/plugins/ppapi/plugin_module.cc
+++ b/webkit/plugins/ppapi/plugin_module.cc
@@ -50,6 +50,7 @@
#include "ppapi/c/ppp.h"
#include "ppapi/c/ppp_instance.h"
#include "ppapi/c/private/ppb_flash.h"
+#include "ppapi/c/private/ppb_flash_file.h"
#include "ppapi/c/private/ppb_flash_menu.h"
#include "ppapi/c/private/ppb_flash_net_connector.h"
#include "ppapi/c/private/ppb_pdf.h"
@@ -69,6 +70,7 @@
#include "webkit/plugins/ppapi/ppb_file_io_impl.h"
#include "webkit/plugins/ppapi/ppb_file_ref_impl.h"
#include "webkit/plugins/ppapi/ppb_file_system_impl.h"
+#include "webkit/plugins/ppapi/ppb_flash_file_impl.h"
#include "webkit/plugins/ppapi/ppb_flash_impl.h"
#include "webkit/plugins/ppapi/ppb_flash_menu_impl.h"
#include "webkit/plugins/ppapi/ppb_flash_net_connector_impl.h"
@@ -248,6 +250,8 @@ const void* GetInterface(const char* name) {
return PluginInstance::GetFindInterface();
if (strcmp(name, PPB_FLASH_INTERFACE) == 0)
return PPB_Flash_Impl::GetInterface();
+ if (strcmp(name, PPB_FLASH_FILE_MODULELOCAL_INTERFACE) == 0)
+ return PPB_Flash_File_ModuleLocal_Impl::GetInterface();
if (strcmp(name, PPB_FLASH_MENU_INTERFACE) == 0)
return PPB_Flash_Menu_Impl::GetInterface();
if (strcmp(name, PPB_FONT_DEV_INTERFACE) == 0)