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

Unified Diff: mojo/runner/android/bootstrap.cc

Issue 1107233002: Move runner stuff into a runner namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.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: mojo/runner/android/bootstrap.cc
diff --git a/mojo/runner/android/bootstrap.cc b/mojo/runner/android/bootstrap.cc
index 3ffe348241c8128d6650ed1fb726654dcdabd462..7d3717308cf8727aa18975484af18885596e29b1 100644
--- a/mojo/runner/android/bootstrap.cc
+++ b/mojo/runner/android/bootstrap.cc
@@ -10,7 +10,7 @@
#include "mojo/runner/android/run_android_application_function.h"
namespace mojo {
-namespace shell {
+namespace runner {
void Bootstrap(JNIEnv* env,
jobject,
@@ -29,14 +29,14 @@ bool RegisterBootstrapJni(JNIEnv* env) {
return RegisterNativesImpl(env);
}
-} // namespace shell
+} // namespace runner
} // namespace mojo
JNI_EXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) {
base::android::InitVM(vm);
JNIEnv* env = base::android::AttachCurrentThread();
- if (!mojo::shell::RegisterBootstrapJni(env))
+ if (!mojo::runner::RegisterBootstrapJni(env))
return -1;
return JNI_VERSION_1_4;
« no previous file with comments | « mojo/runner/android/background_application_loader_unittest.cc ('k') | mojo/runner/android/library_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698