diff options
author | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-28 18:14:00 +0000 |
---|---|---|
committer | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-28 18:14:00 +0000 |
commit | aa24087660b005d3d5379eadd0a98d80ed7a16e8 (patch) | |
tree | 7c061084c4a5299b43525eb751d06b82724e11ff /webkit/plugins/ppapi/plugin_module.cc | |
parent | 3ca185cdb039551e08443c671a5d3a78cbc6454c (diff) | |
download | chromium_src-aa24087660b005d3d5379eadd0a98d80ed7a16e8.zip chromium_src-aa24087660b005d3d5379eadd0a98d80ed7a16e8.tar.gz chromium_src-aa24087660b005d3d5379eadd0a98d80ed7a16e8.tar.bz2 |
Remove PPB_Flash_NetConnector and ENABLE_FLAPPER_HACKS.
PPB_Flash_NetConnector has been superseded by less hacky and more general
interfaces. ENABLE_FLAPPER_HACKS only enabled PPB_Flash_NetConnector.
TEST=builds (and still passes PPAPI tests)
TBR=darin@chromium.org
Review URL: http://codereview.chromium.org/9836131
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@129444 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/plugins/ppapi/plugin_module.cc')
-rw-r--r-- | webkit/plugins/ppapi/plugin_module.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/webkit/plugins/ppapi/plugin_module.cc b/webkit/plugins/ppapi/plugin_module.cc index e485905..0d640b1 100644 --- a/webkit/plugins/ppapi/plugin_module.cc +++ b/webkit/plugins/ppapi/plugin_module.cc @@ -111,7 +111,6 @@ #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" #include "webkit/plugins/ppapi/ppb_gpu_blacklist_private_impl.h" #include "webkit/plugins/ppapi/ppb_graphics_2d_impl.h" #include "webkit/plugins/ppapi/ppb_image_data_impl.h" @@ -374,11 +373,6 @@ const void* GetInterface(const char* name) { if (strcmp(name, PPB_VAR_ARRAY_BUFFER_INTERFACE_1_0) == 0) return ::ppapi::PPB_Var_Shared::GetVarArrayBufferInterface1_0(); -#ifdef ENABLE_FLAPPER_HACKS - if (strcmp(name, PPB_FLASH_NETCONNECTOR_INTERFACE) == 0) - return ::ppapi::thunk::GetPPB_Flash_NetConnector_0_2_Thunk(); -#endif // ENABLE_FLAPPER_HACKS - // Only support the testing interface when the command line switch is // specified. This allows us to prevent people from (ab)using this interface // in production code. |