Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: jni/JniCallbacks.cpp

Issue 29345540: Issue 4030 - Move JNI bindings into separate library project (Closed)
Patch Set: Changeset in adblockplusandroid repo Created July 22, 2016, 12:10 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: jni/JniCallbacks.cpp
diff --git a/jni/JniCallbacks.cpp b/jni/JniCallbacks.cpp
deleted file mode 100644
index d83a3b1e1f4329adda2d186abe199e124ad7687c..0000000000000000000000000000000000000000
--- a/jni/JniCallbacks.cpp
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * This file is part of Adblock Plus <https://adblockplus.org/>,
- * Copyright (C) 2006-2016 Eyeo GmbH
- *
- * Adblock Plus is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
- *
- * Adblock Plus is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include "JniCallbacks.h"
-
-JniCallbackBase::JniCallbackBase(JNIEnv* env, jobject callbackObject)
- : callbackObject(new JniGlobalReference<jobject>(env, callbackObject)),
- exceptionLoggerClass(new JniGlobalReference<jclass>(env, env->FindClass(PKG("JniExceptionHandler"))))
-{
- env->GetJavaVM(&javaVM);
-}
-
-JniCallbackBase::~JniCallbackBase()
-{
-
-}
-
-void JniCallbackBase::LogException(JNIEnv* env, jthrowable throwable) const
-{
- jmethodID logMethod = env->GetStaticMethodID(exceptionLoggerClass->Get(), "logException", "(Ljava/lang/Throwable;)V");
- if (logMethod)
- {
- env->CallStaticVoidMethod(exceptionLoggerClass->Get(), logMethod, throwable);
- }
-}
-
-void JniCallbackBase::CheckAndLogJavaException(JNIEnv* env) const
-{
- if (env->ExceptionCheck())
- {
- JniLocalReference<jthrowable> throwable(env, env->ExceptionOccurred());
- env->ExceptionClear();
- LogException(env, *throwable);
- }
-}
« dependencies ('K') | « jni/JniCallbacks.h ('k') | jni/JniEventCallback.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld