Index: ppapi/proxy/ppapi_proxy_test.h |
diff --git a/ppapi/proxy/ppapi_proxy_test.h b/ppapi/proxy/ppapi_proxy_test.h |
index 68eaa8d2f42ee51c9f29dff2d55732660d4fc3f7..e9618743c75deca7546f8f167cbe039c6aa9a79e 100644 |
--- a/ppapi/proxy/ppapi_proxy_test.h |
+++ b/ppapi/proxy/ppapi_proxy_test.h |
@@ -139,6 +139,9 @@ class PluginProxyTestHarness : public ProxyTestHarnessBase { |
base::PlatformFile handle, |
base::ProcessId remote_pid, |
bool should_close_source) override; |
+ base::SharedMemoryHandle ShareSharedMemoryHandleWithRemote( |
+ const base::SharedMemoryHandle& handle, |
+ base::ProcessId remote_pid) override; |
// PluginDispatcher::PluginDelegate implementation. |
std::set<PP_Instance>* GetGloballySeenInstanceIDSet() override; |
@@ -279,6 +282,9 @@ class HostProxyTestHarness : public ProxyTestHarnessBase { |
base::PlatformFile handle, |
base::ProcessId remote_pid, |
bool should_close_source) override; |
+ base::SharedMemoryHandle ShareSharedMemoryHandleWithRemote( |
+ const base::SharedMemoryHandle& handle, |
+ base::ProcessId remote_pid) override; |
private: |
base::MessageLoopProxy* ipc_message_loop_; // Weak |