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

Unified Diff: ppapi/proxy/ppapi_proxy_test.h

Issue 1154613006: Update pepper to not assume that SharedMemoryHandle is an int. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Another nits pass. Created 5 years, 7 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: 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

Powered by Google App Engine
This is Rietveld 408576698