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

Unified Diff: mojo/shell/standalone/android/background_application_loader.h

Issue 1675153002: ApplicationImpl->ShellConnection, mojom::Application->mojom::ShellClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ci2
Patch Set: . Created 4 years, 10 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: mojo/shell/standalone/android/background_application_loader.h
diff --git a/mojo/shell/standalone/android/background_application_loader.h b/mojo/shell/standalone/android/background_application_loader.h
index 203ce548e089b3fa1cb0363a625acc1f01e25905..ed6f73c1c685649ee396b5931ad724f31d3ed1d2 100644
--- a/mojo/shell/standalone/android/background_application_loader.h
+++ b/mojo/shell/standalone/android/background_application_loader.h
@@ -26,7 +26,7 @@ class BackgroundApplicationLoader
// ApplicationLoader overrides:
void Load(const GURL& url,
- InterfaceRequest<mojom::Application> application_request) override;
+ InterfaceRequest<mojom::ShellClient> request) override;
private:
// |base::DelegateSimpleThread::Delegate| method:
@@ -34,9 +34,8 @@ class BackgroundApplicationLoader
// These functions are exected on the background thread. They call through
// to |background_loader_| to do the actual loading.
- void LoadOnBackgroundThread(
- const GURL& url,
- InterfaceRequest<mojom::Application> application_request);
+ void LoadOnBackgroundThread(const GURL& url,
+ InterfaceRequest<mojom::ShellClient> request);
bool quit_on_shutdown_;
scoped_ptr<ApplicationLoader> loader_;

Powered by Google App Engine
This is Rietveld 408576698