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

Unified Diff: base/android/java/src/org/chromium/base/library_loader/LibraryLoader.java

Issue 1953543002: Rename WebAPK related classes to be of the format *WebApk*.java (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/ChromeApplication.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/android/java/src/org/chromium/base/library_loader/LibraryLoader.java
diff --git a/base/android/java/src/org/chromium/base/library_loader/LibraryLoader.java b/base/android/java/src/org/chromium/base/library_loader/LibraryLoader.java
index da0a43ef8b9456956748920de211e878dcfce32d..ffd26545b5a040e2fce0263ed5e0bed51862b0d2 100644
--- a/base/android/java/src/org/chromium/base/library_loader/LibraryLoader.java
+++ b/base/android/java/src/org/chromium/base/library_loader/LibraryLoader.java
@@ -20,7 +20,7 @@ import org.chromium.base.TraceEvent;
import org.chromium.base.annotations.CalledByNative;
import org.chromium.base.annotations.JNINamespace;
import org.chromium.base.metrics.RecordHistogram;
-import org.chromium.minting.lib.common.WebAPKUtils;
+import org.chromium.minting.lib.common.WebApkUtils;
import java.util.concurrent.atomic.AtomicBoolean;
@@ -273,8 +273,10 @@ public class LibraryLoader {
String zipFilePath = null;
String libFilePath = System.mapLibraryName(library);
if (Linker.isInZipFile()) {
- Context contextForApk = (mLibraryProcessType == LibraryProcessType.PROCESS_WEBAPK_CHILD)
- ? WebAPKUtils.getHostBrowserContext(context) : context;
+ Context contextForApk =
+ (mLibraryProcessType == LibraryProcessType.PROCESS_WEBAPK_CHILD)
+ ? WebApkUtils.getHostBrowserContext(context)
+ : context;
// Load directly from the APK.
zipFilePath = getLibraryApkPath(contextForApk);
Log.i(TAG, "Loading " + library + " from within " + zipFilePath);
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/ChromeApplication.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698