| 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);
|
| }
|
| }
|
|
|