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

Unified Diff: content/ppapi_plugin/ppapi_thread.h

Issue 2485623002: discardable_memory: Using mojo IPC to replace Chrome IPC (Closed)
Patch Set: Fix build bots. Created 4 years, 1 month 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: content/ppapi_plugin/ppapi_thread.h
diff --git a/content/ppapi_plugin/ppapi_thread.h b/content/ppapi_plugin/ppapi_thread.h
index a3b322bb7aa6a07bca4082174d29f60f9aeb30f4..f3425cbeaa896538f79929f56a2ac2fd9b7c2192 100644
--- a/content/ppapi_plugin/ppapi_thread.h
+++ b/content/ppapi_plugin/ppapi_thread.h
@@ -34,6 +34,10 @@ class CommandLine;
class FilePath;
}
+namespace discardable_memory {
+class ClientDiscardableSharedMemoryManager;
+}
+
namespace IPC {
struct ChannelHandle;
}
@@ -172,6 +176,9 @@ class PpapiThread : public ChildThreadImpl,
base::win::ScopedHandle peer_handle_;
#endif
+ std::unique_ptr<discardable_memory::ClientDiscardableSharedMemoryManager>
+ discardable_shared_memory_manager_;
+
DISALLOW_IMPLICIT_CONSTRUCTORS(PpapiThread);
};

Powered by Google App Engine
This is Rietveld 408576698