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

Unified Diff: shell/android/bootstrap.cc

Issue 972433004: Use the mojo::shell namespace consistently underly shell/. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Java! Created 5 years, 10 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
« no previous file with comments | « shell/android/background_application_loader_unittest.cc ('k') | shell/android/library_loader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: shell/android/bootstrap.cc
diff --git a/shell/android/bootstrap.cc b/shell/android/bootstrap.cc
index 823258c01a8c16e164d1b4016c3a574ef20e4157..a1c4573b8529418a1ef9c0868b15a023fb3f452f 100644
--- a/shell/android/bootstrap.cc
+++ b/shell/android/bootstrap.cc
@@ -10,6 +10,7 @@
#include "shell/android/run_android_application_function.h"
namespace mojo {
+namespace shell {
void Bootstrap(JNIEnv* env,
jobject,
@@ -28,13 +29,14 @@ bool RegisterBootstrapJni(JNIEnv* env) {
return RegisterNativesImpl(env);
}
+} // namespace shell
} // namespace mojo
JNI_EXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) {
base::android::InitVM(vm);
JNIEnv* env = base::android::AttachCurrentThread();
- if (!mojo::RegisterBootstrapJni(env))
+ if (!mojo::shell::RegisterBootstrapJni(env))
return -1;
return JNI_VERSION_1_4;
« no previous file with comments | « shell/android/background_application_loader_unittest.cc ('k') | shell/android/library_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698