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

Unified Diff: base/test/android/test_support_jni_registrar.h

Issue 2549363004: Multiprocess test client: Android child process launcher rework. (Closed)
Patch Set: Addressed comments + synced Created 4 years 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: base/test/android/test_support_jni_registrar.h
diff --git a/base/test/android/test_support_jni_registrar.h b/base/test/android/test_support_jni_registrar.h
new file mode 100644
index 0000000000000000000000000000000000000000..f9b8067f3254f94b64e7c61e6e94b3039c30d4c6
--- /dev/null
+++ b/base/test/android/test_support_jni_registrar.h
@@ -0,0 +1,21 @@
+// Copyright 2016 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 BASE_TEST_ANDROID_TEST_SUPPORT_JNI_REGISTRAR_H_
+#define BASE_TEST_ANDROID_TEST_SUPPORT_JNI_REGISTRAR_H_
+
+#include <jni.h>
+
+#include "base/base_export.h"
+
+namespace base {
+namespace android {
+
+// Registers all JNI bindings necessary for base test support.
+BASE_EXPORT bool RegisterTestSupportJni(JNIEnv* env);
+
+} // namespace android
+} // namespace base
+
+#endif // BASE_TEST_ANDROID_TEST_SUPPORT_JNI_REGISTRAR_H_

Powered by Google App Engine
This is Rietveld 408576698