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

Unified Diff: shell/android/ui_application_loader_android.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/ui_application_loader_android.cc
diff --git a/shell/android/ui_application_loader_android.cc b/shell/android/ui_application_loader_android.cc
index acd3185fcc4bc5722c9c5fcaa4298d3cecc4c286..5e16ed27efe47cbbc589537d25e3f79b618c47fe 100644
--- a/shell/android/ui_application_loader_android.cc
+++ b/shell/android/ui_application_loader_android.cc
@@ -8,7 +8,6 @@
#include "base/message_loop/message_loop.h"
#include "shell/application_manager/application_manager.h"
-namespace mojo {
namespace shell {
UIApplicationLoader::UIApplicationLoader(
@@ -25,7 +24,7 @@ UIApplicationLoader::~UIApplicationLoader() {
void UIApplicationLoader::Load(
const GURL& url,
- InterfaceRequest<Application> application_request) {
+ mojo::InterfaceRequest<mojo::Application> application_request) {
DCHECK(application_request.is_pending());
ui_message_loop_->PostTask(
FROM_HERE,
@@ -35,7 +34,7 @@ void UIApplicationLoader::Load(
void UIApplicationLoader::LoadOnUIThread(
const GURL& url,
- InterfaceRequest<Application> application_request) {
+ mojo::InterfaceRequest<mojo::Application> application_request) {
loader_->Load(url, application_request.Pass());
}
@@ -45,4 +44,3 @@ void UIApplicationLoader::ShutdownOnUIThread() {
}
} // namespace shell
-} // namespace mojo

Powered by Google App Engine
This is Rietveld 408576698