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

Unified Diff: shell/android/main.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/main.cc
diff --git a/shell/android/main.cc b/shell/android/main.cc
index 221a5d08092ce7af8eb810b858b921887a72e087..069d7f5c6e15a5be26110e384415967cca86ea7e 100644
--- a/shell/android/main.cc
+++ b/shell/android/main.cc
@@ -33,7 +33,6 @@
using base::LazyInstance;
-namespace mojo {
namespace shell {
namespace {
@@ -108,7 +107,7 @@ void QuitShellThread() {
}
void MojoShellRunner::Run() {
- base::MessageLoop loop(common::MessagePumpMojo::Create());
+ base::MessageLoop loop(mojo::common::MessagePumpMojo::Create());
Context* context = g_context.Pointer()->get();
ConfigureAndroidServices(context);
context->InitWithPaths(mojo_shell_path_, mojo_shell_child_path_);
@@ -225,7 +224,6 @@ bool RegisterShellMain(JNIEnv* env) {
}
} // namespace shell
-} // namespace mojo
// TODO(vtl): We need a main(), even though it should never be called.
int main(int argc, char** argv) {

Powered by Google App Engine
This is Rietveld 408576698