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

Unified Diff: content/public/browser/content_browser_client.h

Issue 1371793004: Provide the DeviceManager service to the renderer directly, no app. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@interface_permission
Patch Set: Fix header inclusion in chrome_content_browser_client.cc. Created 5 years, 3 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: content/public/browser/content_browser_client.h
diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h
index 2c6734cf1f7c073f8180a46bb76201434db02647..8558204199be5eb32f0c5003c7e555a98eb25959 100644
--- a/content/public/browser/content_browser_client.h
+++ b/content/public/browser/content_browser_client.h
@@ -617,13 +617,11 @@ class CONTENT_EXPORT ContentBrowserClient {
ServiceRegistry* registry,
RenderFrameHost* render_frame_host) {}
- using StaticMojoApplicationMap =
- std::map<GURL, base::Callback<scoped_ptr<mojo::ApplicationDelegate>()>>;
-
- // Registers Mojo applications to be loaded in the browser process by the
- // browser's global Mojo shell.
- virtual void RegisterInProcessMojoApplications(
- StaticMojoApplicationMap* apps) {}
+ // Allows to register browser Mojo services exposes through the
Ken Rockot(use gerrit already) 2015/09/28 22:23:14 nit: exposed
Reilly Grant (use Gerrit) 2015/09/28 23:32:00 Done.
+ // RenderFrameHost.
+ virtual void RegisterRenderFrameMojoServices(
+ ServiceRegistry* registry,
+ RenderFrameHost* render_frame_host) {}
using OutOfProcessMojoApplicationMap = std::map<GURL, base::string16>;

Powered by Google App Engine
This is Rietveld 408576698