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

Unified Diff: web_apks/minting_example/libs/client/org/chromium/minting/lib/client/WebApkVersionManager.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
Index: web_apks/minting_example/libs/client/org/chromium/minting/lib/client/WebApkVersionManager.java
diff --git a/web_apks/minting_example/libs/client/org/chromium/minting/lib/client/WebApkVersionManager.java b/web_apks/minting_example/libs/client/org/chromium/minting/lib/client/WebApkVersionManager.java
index 8433a1e8ead6deec0fbb31b621ca5020407160e8..70a4bb1d57ae84f2fcca2a17b282a2286c96fbef 100644
--- a/web_apks/minting_example/libs/client/org/chromium/minting/lib/client/WebApkVersionManager.java
+++ b/web_apks/minting_example/libs/client/org/chromium/minting/lib/client/WebApkVersionManager.java
@@ -10,7 +10,7 @@ import android.preference.PreferenceManager;
import org.chromium.base.FileUtils;
import org.chromium.base.ThreadUtils;
-import org.chromium.minting.lib.common.WebAPKUtils;
+import org.chromium.minting.lib.common.WebApkUtils;
import java.io.File;
@@ -58,7 +58,7 @@ public class WebApkVersionManager {
dexDir = context.getDir("dex", Context.MODE_PRIVATE);
String dexName =
- WebAPKUtils.getRuntimeDexName(WebApkVersion.CURRENT_RUNTIME_DEX_VERSION);
+ WebApkUtils.getRuntimeDexName(WebApkVersion.CURRENT_RUNTIME_DEX_VERSION);
File dexFile = new File(dexDir, dexName);
if (!FileUtils.extractAsset(context, dexName, dexFile) || !DexOptimizer.optimize(dexFile)) {
return;

Powered by Google App Engine
This is Rietveld 408576698