Index: libadblockplus-android/jni/JniLogSystem.h |
diff --git a/libadblockplus-android-tests/src/org/adblockplus/libadblockplus/NoOpUpdaterCallback.java b/libadblockplus-android/jni/JniLogSystem.h |
similarity index 75% |
copy from libadblockplus-android-tests/src/org/adblockplus/libadblockplus/NoOpUpdaterCallback.java |
copy to libadblockplus-android/jni/JniLogSystem.h |
index a7988cb8b932e37f6014c4b55763ac95357e5662..2d7f6c6feb1815f1614dd92539458ab4a64c6af7 100644 |
--- a/libadblockplus-android-tests/src/org/adblockplus/libadblockplus/NoOpUpdaterCallback.java |
+++ b/libadblockplus-android/jni/JniLogSystem.h |
@@ -15,12 +15,13 @@ |
* along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
*/ |
-package org.adblockplus.libadblockplus; |
+#ifndef JNILOGSYSTEM_H |
+#define JNILOGSYSTEM_H |
-public class NoOpUpdaterCallback extends UpdateCheckDoneCallback |
anton
2016/09/23 13:07:09
rietveld bug - the file did not exist before
|
-{ |
- @Override |
- public void updateCheckDoneCallback(String error) |
- { |
- } |
-} |
+#include <jni.h> |
+ |
+void JniLogSystem_OnLoad(JavaVM* vm, JNIEnv* env, void* reserved); |
+ |
+void JniLogSystem_OnUnload(JavaVM* vm, JNIEnv* env, void* reserved); |
+ |
+#endif /* JNILOGSYSTEM_H */ |