| 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 34ff478dd0e8fcbd585372014f3dca41ffd99086..d407c2a3b4d0bd8cb8c3dd039d4320138d68b7f8 100644
|
| --- a/content/public/browser/content_browser_client.h
|
| +++ b/content/public/browser/content_browser_client.h
|
| @@ -120,6 +120,7 @@ class RenderProcessHost;
|
| class RenderViewHost;
|
| class ResourceContext;
|
| class ServiceRegistry;
|
| +class ServiceRegistryAndroid;
|
| class SiteInstance;
|
| class SpeechRecognitionManagerDelegate;
|
| class TracingDelegate;
|
| @@ -657,6 +658,13 @@ class CONTENT_EXPORT ContentBrowserClient {
|
| // RenderProcessHost.
|
| virtual void RegisterRenderProcessMojoServices(ServiceRegistry* registry) {}
|
|
|
| +#if defined(OS_ANDROID)
|
| + // Allows to register Android browser Mojo services exposed through the
|
| + // RenderProcessHost.
|
| + virtual void RegisterRenderProcessAndroidMojoServices(
|
| + ServiceRegistryAndroid* registry) {}
|
| +#endif
|
| +
|
| // Allows to register browser Mojo services exposed through the
|
| // FrameMojoShell.
|
| virtual void RegisterFrameMojoShellServices(
|
|
|