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

Unified Diff: shell/android/android_handler_loader.cc

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.cc
diff --git a/shell/android/android_handler_loader.cc b/shell/android/android_handler_loader.cc
index fc92280cfa5748b06708aa7ce75360c33f12b119..9909a8567340cd6054414853d4f4ee5bf760d3fe 100644
--- a/shell/android/android_handler_loader.cc
+++ b/shell/android/android_handler_loader.cc
@@ -4,7 +4,6 @@
#include "shell/android/android_handler_loader.h"
-namespace mojo {
namespace shell {
AndroidHandlerLoader::AndroidHandlerLoader() {
@@ -15,11 +14,10 @@ AndroidHandlerLoader::~AndroidHandlerLoader() {
void AndroidHandlerLoader::Load(
const GURL& url,
- InterfaceRequest<Application> application_request) {
+ mojo::InterfaceRequest<mojo::Application> application_request) {
DCHECK(application_request.is_pending());
application_.reset(
- new ApplicationImpl(&android_handler_, application_request.Pass()));
+ new mojo::ApplicationImpl(&android_handler_, application_request.Pass()));
}
} // namespace shell
-} // namespace mojo

Powered by Google App Engine
This is Rietveld 408576698