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

Unified Diff: shell/android/android_handler_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/android_handler_loader.h
diff --git a/shell/android/android_handler_loader.h b/shell/android/android_handler_loader.h
index 42d514c37c4227292e3c614e52665f299227c72a..4e782a5ce768b79dfc9db9cb29496c9f2e1bbca0 100644
--- a/shell/android/android_handler_loader.h
+++ b/shell/android/android_handler_loader.h
@@ -12,7 +12,6 @@
#include "shell/android/android_handler.h"
#include "shell/application_manager/application_loader.h"
-namespace mojo {
namespace shell {
class AndroidHandlerLoader : public ApplicationLoader {
@@ -22,16 +21,16 @@ class AndroidHandlerLoader : public ApplicationLoader {
private:
// ApplicationLoader overrides:
- void Load(const GURL& url,
- InterfaceRequest<Application> application_request) override;
+ void Load(
+ const GURL& url,
+ mojo::InterfaceRequest<mojo::Application> application_request) override;
AndroidHandler android_handler_;
- scoped_ptr<ApplicationImpl> application_;
+ scoped_ptr<mojo::ApplicationImpl> application_;
DISALLOW_COPY_AND_ASSIGN(AndroidHandlerLoader);
};
} // namespace shell
-} // namespace mojo
#endif // SHELL_ANDROID_ANDROID_HANDLER_LOADER_H_

Powered by Google App Engine
This is Rietveld 408576698