summaryrefslogtreecommitdiffstats
path: root/content/shell/android/shell_jni_registrar.h
diff options
context:
space:
mode:
authornileshagrawal@chromium.org <nileshagrawal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-29 21:55:55 +0000
committernileshagrawal@chromium.org <nileshagrawal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-29 21:55:55 +0000
commit4d4eb5babc558ccddc09168f66970905ed0204d4 (patch)
treefe23183a39cec251e5fd1d9da4047f2fec020510 /content/shell/android/shell_jni_registrar.h
parent3ac99b95a6ee9dfaea1d746f795975cc97c7ca45 (diff)
downloadchromium_src-4d4eb5babc558ccddc09168f66970905ed0204d4.zip
chromium_src-4d4eb5babc558ccddc09168f66970905ed0204d4.tar.gz
chromium_src-4d4eb5babc558ccddc09168f66970905ed0204d4.tar.bz2
Relanding "Add apk for running content_browsertests"
Revert "Revert 179189" This reverts commit 5844ab0c6a41cc9d306f8c355cc7ceb5e290cbb1. Original CL:https://codereview.chromium.org/12047068/ was reverted as we failed to update the bot scripts with the new package name for content_shell_apk TBR=mark@chromium.org,jam@chromium.org BUG=138275 Review URL: https://chromiumcodereview.appspot.com/12091033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@179428 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/shell/android/shell_jni_registrar.h')
-rw-r--r--content/shell/android/shell_jni_registrar.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/content/shell/android/shell_jni_registrar.h b/content/shell/android/shell_jni_registrar.h
new file mode 100644
index 0000000..f336c52
--- /dev/null
+++ b/content/shell/android/shell_jni_registrar.h
@@ -0,0 +1,19 @@
+// Copyright (c) 2012 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.
+
+#ifndef CONTENT_SHELL_ANDROID_SHELL_JNI_REGISTRAR_H_
+#define CONTENT_SHELL_ANDROID_SHELL_JNI_REGISTRAR_H_
+
+#include <jni.h>
+
+namespace content {
+namespace android {
+
+// Register all JNI bindings necessary for content shell.
+bool RegisterShellJni(JNIEnv* env);
+
+} // namespace android
+} // namespace content
+
+#endif // CONTENT_SHELL_ANDROID_SHELL_JNI_REGISTRAR_H_