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

Unified Diff: ppapi/nacl_irt/manifest_service.h

Issue 1262253004: Let IPC::SyncMessageFilter take advantage of thread-safe Send. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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/nacl_irt/manifest_service.h
diff --git a/ppapi/nacl_irt/manifest_service.h b/ppapi/nacl_irt/manifest_service.h
index 7a869e7c58a8bde1c0d1909b84ab14d01ed6887c..4a648d9bda1ff302d1beb8cb8e6c20ac0cdb3fdb 100644
--- a/ppapi/nacl_irt/manifest_service.h
+++ b/ppapi/nacl_irt/manifest_service.h
@@ -17,7 +17,7 @@ class WaitableEvent;
namespace IPC {
struct ChannelHandle;
-class ChannelProxy;
+class SyncChannel;
class SyncMessageFilter;
} // namespace IPC
@@ -34,7 +34,7 @@ class ManifestService {
bool OpenResource(const char* file, int* fd);
private:
- scoped_ptr<IPC::ChannelProxy> channel_;
+ scoped_ptr<IPC::SyncChannel> channel_;
scoped_refptr<IPC::SyncMessageFilter> filter_;
base::Lock open_resource_lock_;

Powered by Google App Engine
This is Rietveld 408576698