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

Unified Diff: web_apks/minting_example/libs/client/org/chromium/minting/lib/client/WebApkStateParams.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/WebApkStateParams.java
diff --git a/web_apks/minting_example/libs/client/org/chromium/minting/lib/client/MintingStateParams.java b/web_apks/minting_example/libs/client/org/chromium/minting/lib/client/WebApkStateParams.java
similarity index 92%
rename from web_apks/minting_example/libs/client/org/chromium/minting/lib/client/MintingStateParams.java
rename to web_apks/minting_example/libs/client/org/chromium/minting/lib/client/WebApkStateParams.java
index 314f420fe5b6d2070dbd27a27fbd754f586f4e55..64297699c62cecabf276344b06cede1855086713 100644
--- a/web_apks/minting_example/libs/client/org/chromium/minting/lib/client/MintingStateParams.java
+++ b/web_apks/minting_example/libs/client/org/chromium/minting/lib/client/WebApkStateParams.java
@@ -9,15 +9,15 @@ package org.chromium.minting.lib.client;
* in the minted APK runtime, has enough information to determine whether a URL navigation should
* stay within the current minted APK app.
*/
-public class MintingStateParams {
+public class WebApkStateParams {
private boolean mUseMintedRuntime = false;
private String mPackageName = "";
private String mScopeUrl = "";
- public MintingStateParams() {
+ public WebApkStateParams() {
}
- public MintingStateParams(
+ public WebApkStateParams(
boolean useMintedRuntime, String packageName, String scopeUrl) {
mUseMintedRuntime = useMintedRuntime;
mPackageName = packageName;

Powered by Google App Engine
This is Rietveld 408576698