diff options
author | fischman@chromium.org <fischman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-18 17:00:23 +0000 |
---|---|---|
committer | fischman@chromium.org <fischman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-18 17:00:23 +0000 |
commit | 0dedf72573b37d924b4a29b76cb17550d2cf5f81 (patch) | |
tree | bbb5135b127ff199551cb5aba34967dc11249137 /webkit/plugins/ppapi/mock_plugin_delegate.cc | |
parent | 4af029813d7160506c1ad151a338288681e4294a (diff) | |
download | chromium_src-0dedf72573b37d924b4a29b76cb17550d2cf5f81.zip chromium_src-0dedf72573b37d924b4a29b76cb17550d2cf5f81.tar.gz chromium_src-0dedf72573b37d924b4a29b76cb17550d2cf5f81.tar.bz2 |
Convert PPB_Buffer_Impl to use SharedMemory for efficient IPC use.
BUG=none
TEST=trybots
Review URL: http://codereview.chromium.org/7039022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@85773 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/plugins/ppapi/mock_plugin_delegate.cc')
-rw-r--r-- | webkit/plugins/ppapi/mock_plugin_delegate.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/webkit/plugins/ppapi/mock_plugin_delegate.cc b/webkit/plugins/ppapi/mock_plugin_delegate.cc index 8103a09..8405e64 100644 --- a/webkit/plugins/ppapi/mock_plugin_delegate.cc +++ b/webkit/plugins/ppapi/mock_plugin_delegate.cc @@ -243,5 +243,10 @@ std::string MockPluginDelegate::GetFlashCommandLineArgs() { return std::string(); } +base::SharedMemory* MockPluginDelegate::CreateAnonymousSharedMemory( + uint32_t size) { + return NULL; +} + } // namespace ppapi } // namespace webkit |