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

Unified Diff: android_webview/java/src/org/chromium/android_webview/AwBrowserProcess.java

Issue 12939021: Make the build control what library(/ies) to load (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@antpy
Patch Set: Created 7 years, 9 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: android_webview/java/src/org/chromium/android_webview/AwBrowserProcess.java
diff --git a/android_webview/java/src/org/chromium/android_webview/AwBrowserProcess.java b/android_webview/java/src/org/chromium/android_webview/AwBrowserProcess.java
index 0508c21192f0bda2954bc49dc6aab489513416db..7c3ab76050d63f2521dafbd9e2263ff37d77995c 100644
--- a/android_webview/java/src/org/chromium/android_webview/AwBrowserProcess.java
+++ b/android_webview/java/src/org/chromium/android_webview/AwBrowserProcess.java
@@ -17,11 +17,6 @@ import org.chromium.content.common.ProcessInitException;
* Wrapper for the steps needed to initialize the java and native sides of webview chromium.
*/
public abstract class AwBrowserProcess {
- /**
- * The name of the library to load.
- */
- private static final String NATIVE_LIBRARY = "webviewchromium";
-
private static final String PRIVATE_DATA_DIRECTORY_SUFFIX = "webview";
/**
@@ -31,7 +26,6 @@ public abstract class AwBrowserProcess {
*/
public static void loadLibrary() {
PathUtils.setPrivateDataDirectorySuffix(PRIVATE_DATA_DIRECTORY_SUFFIX);
- LibraryLoader.setLibraryToLoad(NATIVE_LIBRARY);
try {
LibraryLoader.loadNow();
} catch (ProcessInitException e) {

Powered by Google App Engine
This is Rietveld 408576698