Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1238)

Unified Diff: content/shell/android/linker_test_apk/src/org/chromium/chromium_linker_test_apk/LinkerTests.java

Issue 1263053002: Move JNI annotations to annotations package. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/shell/android/linker_test_apk/src/org/chromium/chromium_linker_test_apk/LinkerTests.java
diff --git a/content/shell/android/linker_test_apk/src/org/chromium/chromium_linker_test_apk/LinkerTests.java b/content/shell/android/linker_test_apk/src/org/chromium/chromium_linker_test_apk/LinkerTests.java
index 0ca4e494c591c02c6224571a5b57672740656a35..da6cdec73260d5a9bf5e6defd1980067604b793c 100644
--- a/content/shell/android/linker_test_apk/src/org/chromium/chromium_linker_test_apk/LinkerTests.java
+++ b/content/shell/android/linker_test_apk/src/org/chromium/chromium_linker_test_apk/LinkerTests.java
@@ -6,7 +6,7 @@ package org.chromium.chromium_linker_test_apk;
import android.util.Log;
-import org.chromium.base.JNINamespace;
+import org.chromium.base.annotations.JNINamespace;
import org.chromium.base.library_loader.Linker;
/**
@@ -47,10 +47,11 @@ public class LinkerTests implements Linker.TestRunner {
checkSharedRelro = true;
}
- if (checkSharedRelro)
+ if (checkSharedRelro) {
return nativeCheckForSharedRelros(isBrowserProcess);
- else
+ } else {
return nativeCheckForNoSharedRelros(isBrowserProcess);
+ }
}
// Check that there are shared RELRO sections in the current process,

Powered by Google App Engine
This is Rietveld 408576698