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

Unified Diff: shell/android/background_application_loader.h

Issue 1067173003: Remove mojo:: part of mojo::shell:: nested namespace in //shell. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 8 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: shell/android/background_application_loader.h
diff --git a/shell/android/background_application_loader.h b/shell/android/background_application_loader.h
index 9dcee406e25bfa7124c50b7d71200c5f35d3825d..53629631af16b63463a796ad1ffe62c6db2dace9 100644
--- a/shell/android/background_application_loader.h
+++ b/shell/android/background_application_loader.h
@@ -12,7 +12,6 @@
#include "base/threading/simple_thread.h"
#include "shell/application_manager/application_loader.h"
-namespace mojo {
namespace shell {
class BackgroundApplicationLoader
@@ -25,8 +24,9 @@ class BackgroundApplicationLoader
~BackgroundApplicationLoader() override;
// ApplicationLoader overrides:
- void Load(const GURL& url,
- InterfaceRequest<Application> application_request) override;
+ void Load(
+ const GURL& url,
+ mojo::InterfaceRequest<mojo::Application> application_request) override;
private:
// |base::DelegateSimpleThread::Delegate| method:
@@ -36,7 +36,7 @@ class BackgroundApplicationLoader
// to |background_loader_| to do the actual loading.
void LoadOnBackgroundThread(
const GURL& url,
- InterfaceRequest<Application> application_request);
+ mojo::InterfaceRequest<mojo::Application> application_request);
bool quit_on_shutdown_;
scoped_ptr<ApplicationLoader> loader_;
@@ -59,6 +59,5 @@ class BackgroundApplicationLoader
};
} // namespace shell
-} // namespace mojo
#endif // SHELL_ANDROID_BACKGROUND_APPLICATION_LOADER_H_

Powered by Google App Engine
This is Rietveld 408576698