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

Unified Diff: webapk/libs/client/src/org/chromium/webapk/lib/client/WebApkVersionManager.java

Issue 1958523002: Make WebAPK naming consistent 1/2 (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
Index: webapk/libs/client/src/org/chromium/webapk/lib/client/WebApkVersionManager.java
diff --git a/webapk/libs/client/src/org/chromium/webapk/lib/client/WebApkVersionManager.java b/webapk/libs/client/src/org/chromium/webapk/lib/client/WebApkVersionManager.java
index 8b643a3ff7e77681f890d41473ee4257409599cf..fb83204a1c3b64798ac7a4215b97e02f2ddb4c07 100644
--- a/webapk/libs/client/src/org/chromium/webapk/lib/client/WebApkVersionManager.java
+++ b/webapk/libs/client/src/org/chromium/webapk/lib/client/WebApkVersionManager.java
@@ -15,7 +15,7 @@ import org.chromium.webapk.lib.common.WebApkUtils;
import java.io.File;
/**
- * Updates installed Web APKs after a Chrome update.
+ * Updates installed WebAPKs after a Chrome update.
*/
public class WebApkVersionManager {
/**
@@ -27,10 +27,10 @@ public class WebApkVersionManager {
private static final String TAG = "WebApkVersionManager";
/**
- * If a new Web APK runtime is available due to a Chrome update, updates the installed Web APKs.
+ * If a new WebAPK runtime is available due to a Chrome update, updates the installed WebAPKs.
* Should not be called on UI thread.
* @param Context context
- * @param alwaysExtractRuntimeDex Whether the Web APK runtime should always be re-extracted from
+ * @param alwaysExtractRuntimeDex Whether the WebAPK runtime should always be re-extracted from
* the Chrome APK regardless of whether a new version is available.
*/
public static void updateWebApksIfNeeded(Context context, boolean alwaysExtractRuntimeDex) {
@@ -64,7 +64,7 @@ public class WebApkVersionManager {
return;
}
- // Make dex file world-readable so that Web APK can use it.
+ // Make dex file world-readable so that WebAPK can use it.
dexFile.setReadable(true, false);
}
}

Powered by Google App Engine
This is Rietveld 408576698