Chromium Code Reviews| Index: testing/android/native_test_jni_onload_delegate.h |
| diff --git a/testing/android/native_test_jni_onload_delegate.h b/testing/android/native_test_jni_onload_delegate.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2833a08ba3b5fda37fb78ad9602ab98ad42d9d60 |
| --- /dev/null |
| +++ b/testing/android/native_test_jni_onload_delegate.h |
| @@ -0,0 +1,16 @@ |
| +// Copyright 2015 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 "base/android/jni_onload_delegate.h" |
| + |
| +#ifndef TESTING_ANDROID_NATIVE_TEST_JNI_ONLOAD_DELEGATE_H_ |
| +#define TESTING_ANDROID_NATIVE_TEST_JNI_ONLOAD_DELEGATE_H_ |
| + |
| +class NativeTestJNIOnLoadDelegate : public base::android::JNIOnLoadDelegate { |
|
jam
2015/01/26 22:38:22
ditto
|
| + public: |
| + virtual bool RegisterJNI(JNIEnv* env) override; |
| + virtual bool Init() override; |
| +}; |
| + |
| +#endif // TESTING_ANDROID_NATIVE_TEST_JNI_ONLOAD_DELEGATE_H_ |