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

Unified Diff: content/browser/browser_child_process_host_impl.cc

Issue 2844923002: Replace InterfaceRegistry on RenderFrameHostImpl with BinderRegistry (Closed)
Patch Set: . Created 3 years, 8 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 | « components/filesystem/file_system_app.cc ('k') | content/browser/frame_host/render_frame_host_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/browser_child_process_host_impl.cc
diff --git a/content/browser/browser_child_process_host_impl.cc b/content/browser/browser_child_process_host_impl.cc
index 4f19fb708f3d61905144f6d54041ab44747379e1..8006a66890dfb0764e8da6dfeec20033b87745f1 100644
--- a/content/browser/browser_child_process_host_impl.cc
+++ b/content/browser/browser_child_process_host_impl.cc
@@ -165,9 +165,11 @@ BrowserChildProcessHostImpl::BrowserChildProcessHostImpl(
if (!service_name.empty()) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
+ service_manager::Identity child_identity(
+ service_name, service_manager::mojom::kInheritUserID,
+ base::StringPrintf("%d", data_.id));
child_connection_.reset(
- new ChildConnection(service_name, base::StringPrintf("%d", data_.id),
- pending_connection_.get(),
+ new ChildConnection(child_identity, pending_connection_.get(),
ServiceManagerContext::GetConnectorForIOThread(),
base::ThreadTaskRunnerHandle::Get()));
}
« no previous file with comments | « components/filesystem/file_system_app.cc ('k') | content/browser/frame_host/render_frame_host_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698