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

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

Issue 1831173002: Scaffolding for Android implementation of PaymentRequest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mojo
Patch Set: Rebase Created 4 years, 9 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 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(

Powered by Google App Engine
This is Rietveld 408576698