| Index: shell/android/bootstrap.cc
|
| diff --git a/shell/android/bootstrap.cc b/shell/android/bootstrap.cc
|
| index e3c74fa1deb2990d8e130158051c4905c8d881e1..7775b29fbc42b57c3a19dea7fc3d1a1cae25ae91 100644
|
| --- a/shell/android/bootstrap.cc
|
| +++ b/shell/android/bootstrap.cc
|
| @@ -8,7 +8,6 @@
|
| #include "jni/Bootstrap_jni.h"
|
| #include "shell/android/run_android_application_function.h"
|
|
|
| -namespace mojo {
|
| namespace shell {
|
|
|
| void Bootstrap(JNIEnv* env,
|
| @@ -29,13 +28,12 @@ bool RegisterBootstrapJni(JNIEnv* 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::shell::RegisterBootstrapJni(env))
|
| + if (!shell::RegisterBootstrapJni(env))
|
| return -1;
|
|
|
| return JNI_VERSION_1_4;
|
|
|