Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CONTENT_APP_ANDROID_CONTENT_JNI_ONLOAD_DELEGATE_H_ | |
| 6 #define CONTENT_APP_ANDROID_CONTENT_JNI_ONLOAD_DELEGATE_H_ | |
| 7 | |
| 8 #include "base/android/jni_onload_delegate.h" | |
| 9 #include "content/common/content_export.h" | |
| 10 | |
| 11 namespace content { | |
| 12 namespace android { | |
| 13 | |
| 14 class ContentJNIOnLoadDelegate | |
|
jam
2015/01/26 22:38:22
ditto, inline this in the one file that uses it
| |
| 15 : public base::android::JNIOnLoadDelegate { | |
| 16 public: | |
| 17 virtual bool RegisterJNI(JNIEnv* env) override; | |
| 18 virtual bool Init() override; | |
| 19 }; | |
| 20 | |
| 21 } // namespace android | |
| 22 } // namespace content | |
| 23 | |
| 24 #endif // CONTENT_APP_ANDROID_CONTENT_JNI_ONLOAD_DELEGATE_H_ | |
| OLD | NEW |