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

Unified Diff: mojo/shell/shell_test_base_android.cc

Issue 1049993002: Get mojo_shell building inside chromium checkout. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix presubmit Created 5 years, 9 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 | « mojo/shell/shell_test_base.cc ('k') | mojo/shell/shell_test_base_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/shell_test_base_android.cc
diff --git a/mojo/shell/shell_test_base_android.cc b/mojo/shell/shell_test_base_android.cc
new file mode 100644
index 0000000000000000000000000000000000000000..4b3b7360958beddd579f67aaee5ef65a1dfb8961
--- /dev/null
+++ b/mojo/shell/shell_test_base_android.cc
@@ -0,0 +1,47 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "mojo/shell/shell_test_base.h"
+
+#include "base/android/jni_android.h"
+#include "base/android/jni_string.h"
+#include "base/files/file_path.h"
+#include "base/files/file_util.h"
+#include "jni/ShellTestBase_jni.h"
+#include "mojo/shell/filename_util.h"
+#include "url/gurl.h"
+
+namespace mojo {
+namespace shell {
+namespace test {
+
+namespace {
+
+JNIEnv* InitEnv() {
+ JNIEnv* env = base::android::AttachCurrentThread();
+ static bool initialized = false;
+ if (!initialized) {
+ RegisterNativesImpl(env);
+ initialized = true;
+ }
+ return env;
+}
+
+} // namespace
+
+void ShellTestBase::SetUpTestApplications() {
+ // Extract mojo applications, and set the resolve base URL to the directory
+ // containing those.
+ JNIEnv* env = InitEnv();
+ base::android::ScopedJavaLocalRef<jstring> service_dir(
+ Java_ShellTestBase_extractMojoApplications(
+ env, base::android::GetApplicationContext()));
+ shell_context_.url_resolver()->SetMojoBaseURL(
+ FilePathToFileURL(base::FilePath(
+ base::android::ConvertJavaStringToUTF8(env, service_dir.obj()))));
+}
+
+} // namespace test
+} // namespace shell
+} // namespace mojo
« no previous file with comments | « mojo/shell/shell_test_base.cc ('k') | mojo/shell/shell_test_base_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698