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

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

Issue 141223002: Move the android library loader from content to base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix final nits Created 6 years, 10 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/content_linker_test_apk/LinkerTests.java b/content/shell/android/linker_test_apk/src/org/chromium/chromium_linker_test_apk/LinkerTests.java
similarity index 91%
rename from content/shell/android/linker_test_apk/src/org/chromium/content_linker_test_apk/LinkerTests.java
rename to content/shell/android/linker_test_apk/src/org/chromium/chromium_linker_test_apk/LinkerTests.java
index 6713643e4e5a97771fceb530baec06f87dbcd3b1..476274a04aacc4721b69fdb4766a165fd20337bf 100644
--- a/content/shell/android/linker_test_apk/src/org/chromium/content_linker_test_apk/LinkerTests.java
+++ b/content/shell/android/linker_test_apk/src/org/chromium/chromium_linker_test_apk/LinkerTests.java
@@ -2,21 +2,24 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-package org.chromium.content_linker_test_apk;
+package org.chromium.chromium_linker_test_apk;
import android.util.Log;
import org.chromium.base.JNINamespace;
-import org.chromium.content.app.Linker;
+import org.chromium.base.library_loader.Linker;
-// A class that is only used in linker test APK to perform runtime checks
-// in the current process.
+/**
+ * A class that is only used in linker test APK to perform runtime checks
+ * in the current process.
+ */
@JNINamespace("content")
public class LinkerTests implements Linker.TestRunner {
private static final String TAG = "LinkerTests";
public LinkerTests() {}
+ @Override
public boolean runChecks(int memoryDeviceConfig,
boolean isBrowserProcess) {
boolean checkSharedRelro;

Powered by Google App Engine
This is Rietveld 408576698