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

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

Issue 2079943002: Change RenderFrame to use InterfaceRegistry et al. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a2
Patch Set: . Created 4 years, 6 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 493cb42a3d185296c1e46b195e749016074f4b62..7aed5913a483149b0462bd4dd4dfa8a1c3e03fa4 100644
--- a/content/public/browser/content_browser_client.h
+++ b/content/public/browser/content_browser_client.h
@@ -61,6 +61,7 @@ class CdmFactory;
}
namespace shell {
+class InterfaceRegistry;
class ShellClient;
}
@@ -646,22 +647,22 @@ class CONTENT_EXPORT ContentBrowserClient {
virtual std::string GetShellUserIdForBrowserContext(
BrowserContext* browser_context);
- // Allows to register browser Mojo services exposed through the
+ // Allows to register browser Mojo interfaces exposed through the
// RenderProcessHost.
virtual void RegisterRenderProcessMojoServices(
ServiceRegistry* registry,
RenderProcessHost* render_process_host) {}
- // Allows to register browser Mojo services exposed through the
+ // Allows to register browser Mojo interfaces exposed through the
// FrameMojoShell.
- virtual void RegisterFrameMojoShellServices(
- ServiceRegistry* registry,
+ virtual void RegisterFrameMojoShellInterfaces(
+ shell::InterfaceRegistry* registry,
RenderFrameHost* render_frame_host) {}
- // Allows to register browser Mojo services exposed through the
+ // Allows to register browser Mojo interfaces exposed through the
// RenderFrameHost.
- virtual void RegisterRenderFrameMojoServices(
- ServiceRegistry* registry,
+ virtual void RegisterRenderFrameMojoInterfaces(
+ shell::InterfaceRegistry* registry,
RenderFrameHost* render_frame_host) {}
using StaticMojoApplicationMap = std::map<std::string, MojoApplicationInfo>;
« no previous file with comments | « content/public/browser/android/service_registry_android.h ('k') | content/public/browser/gpu_service_registry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698