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

Unified Diff: content/browser/mojo/mojo_application_host.h

Issue 1831173002: Scaffolding for Android implementation of PaymentRequest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mojo
Patch Set: Register PaymentRequest with render process 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/browser/mojo/mojo_application_host.h
diff --git a/content/browser/mojo/mojo_application_host.h b/content/browser/mojo/mojo_application_host.h
index f09c729e7d6607a97effe727b768c4821a9a8671..f73811602e89824ffb3f229933fca75dda412b2d 100644
--- a/content/browser/mojo/mojo_application_host.h
+++ b/content/browser/mojo/mojo_application_host.h
@@ -15,10 +15,6 @@
#include "mojo/edk/embedder/scoped_platform_handle.h"
#include "mojo/public/cpp/system/message_pipe.h"
-#if defined(OS_ANDROID)
-#include "content/browser/mojo/service_registry_android.h"
-#endif
-
namespace IPC {
class Sender;
}
@@ -43,12 +39,6 @@ class CONTENT_EXPORT MojoApplicationHost {
ServiceRegistry* service_registry() { return &service_registry_; }
-#if defined(OS_ANDROID)
- ServiceRegistryAndroid* service_registry_android() {
- return service_registry_android_.get();
- }
-#endif
-
void OverrideIOTaskRunnerForTest(
scoped_refptr<base::TaskRunner> io_task_runner);
@@ -63,10 +53,6 @@ class CONTENT_EXPORT MojoApplicationHost {
scoped_refptr<base::TaskRunner> io_task_runner_override_;
-#if defined(OS_ANDROID)
- scoped_ptr<ServiceRegistryAndroid> service_registry_android_;
-#endif
-
DISALLOW_COPY_AND_ASSIGN(MojoApplicationHost);
};

Powered by Google App Engine
This is Rietveld 408576698