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

Unified Diff: content/common/child_process_host_impl.cc

Issue 1256993003: ipc: Create AttachmentBrokerPrivileged and AttachmentBrokerUnprivileged. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@add_ipc_message_feature
Patch Set: Rebase. Created 5 years, 5 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
« no previous file with comments | « content/child/child_thread_impl.cc ('k') | ipc/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/child_process_host_impl.cc
diff --git a/content/common/child_process_host_impl.cc b/content/common/child_process_host_impl.cc
index 45ede038c7fcb78675d971d27e87735d1292c7e2..50bc0e334dc47964bf66271b03682589220eddd8 100644
--- a/content/common/child_process_host_impl.cc
+++ b/content/common/child_process_host_impl.cc
@@ -31,12 +31,12 @@
#include "base/linux_util.h"
#elif defined(OS_WIN)
#include "content/common/font_cache_dispatcher_win.h"
-#include "ipc/attachment_broker_win.h"
+#include "ipc/attachment_broker_privileged_win.h"
#endif // OS_LINUX
#if defined(OS_WIN)
-base::LazyInstance<IPC::AttachmentBrokerWin>::Leaky g_attachment_broker =
- LAZY_INSTANCE_INITIALIZER;
+base::LazyInstance<IPC::AttachmentBrokerPrivilegedWin>::Leaky
erikchen 2015/07/28 20:55:56 I snuck in this change, replacing AttachmentBroker
+ g_attachment_broker = LAZY_INSTANCE_INITIALIZER;
#endif // defined(OS_WIN)
namespace {
« no previous file with comments | « content/child/child_thread_impl.cc ('k') | ipc/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698