Chromium Code Reviews| Index: content/shell/android/shell_jni_onload_delegate.h |
| diff --git a/content/shell/android/shell_jni_onload_delegate.h b/content/shell/android/shell_jni_onload_delegate.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..007992142a2849054d78f8f2bdd83fca8e2e56ab |
| --- /dev/null |
| +++ b/content/shell/android/shell_jni_onload_delegate.h |
| @@ -0,0 +1,22 @@ |
| +// 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 CONTENT_SHELL_ANDROID_SHELL_JNI_ONLOAD_DELEGATE_H_ |
| +#define CONTENT_SHELL_ANDROID_SHELL_JNI_ONLOAD_DELEGATE_H_ |
| + |
| +namespace content { |
| +namespace android { |
| + |
| +class ShellJNIOnLoadDelegate : public base::android::JNIOnLoadDelegate { |
|
jam
2015/01/26 22:38:22
ditto
|
| + public: |
| + virtual bool RegisterJNI(JNIEnv* env) override; |
| + virtual bool Init() override; |
| +}; |
| + |
| +} // namespace android |
| +} // namespace content |
| + |
| +#endif // CONTENT_SHELL_ANDROID_SHELL_JNI_ONLOAD_DELEGATE_H_ |