| Index: chrome/app/android/chrome_jni_onload_delegate.h
|
| diff --git a/chrome/app/android/chrome_jni_onload_delegate.h b/chrome/app/android/chrome_jni_onload_delegate.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..db5b84f421c2eb41755316a7f2b34443eaa11a34
|
| --- /dev/null
|
| +++ b/chrome/app/android/chrome_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 CHROME_APP_ANDROID_CHROME_JNI_ONLOAD_DELEGATE_H_
|
| +#define CHROME_APP_ANDROID_CHROME_JNI_ONLOAD_DELEGATE_H_
|
| +
|
| +class ChromeJNIOnLoadDelegate : public base::android::JNIOnLoadDelegate {
|
| + public:
|
| + virtual bool RegisterJNI(JNIEnv* env) override;
|
| + virtual bool Init() override;
|
| +};
|
| +
|
| +#endif // CHROME_APP_ANDROID_CHROME_JNI_ONLOAD_DELEGATE_H_
|
|
|