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

Unified Diff: web_apks/minting_example/libs/runtime_library/src/org/chromium/minting/libs/runtime_library/WebApkServiceImpl.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/runtime_library/src/org/chromium/minting/libs/runtime_library/WebApkServiceImpl.java
diff --git a/web_apks/minting_example/libs/runtime_library/src/org/chromium/minting/libs/runtime_library/MintedServiceImpl.java b/web_apks/minting_example/libs/runtime_library/src/org/chromium/minting/libs/runtime_library/WebApkServiceImpl.java
similarity index 94%
rename from web_apks/minting_example/libs/runtime_library/src/org/chromium/minting/libs/runtime_library/MintedServiceImpl.java
rename to web_apks/minting_example/libs/runtime_library/src/org/chromium/minting/libs/runtime_library/WebApkServiceImpl.java
index 09aef3fbf59269446806b77a70dfe02dfd2823d6..bcc289eed5017ff9b0c620485f7b88e076582fba 100644
--- a/web_apks/minting_example/libs/runtime_library/src/org/chromium/minting/libs/runtime_library/MintedServiceImpl.java
+++ b/web_apks/minting_example/libs/runtime_library/src/org/chromium/minting/libs/runtime_library/WebApkServiceImpl.java
@@ -23,10 +23,10 @@ import java.util.Set;
/**
* Implements services offered by the minted APK to chrome.
*/
-public class MintedServiceImpl extends IMintedApi.Stub {
+public class WebApkServiceImpl extends IWebApkApi.Stub {
public static final String KEY_APP_ICON_ID = "app_icon_id";
public static final String KEY_EXPECTED_HOST_BROWSER = "expected_host_browser";
- private static final String TAG = "MintedServiceImpl";
+ private static final String TAG = "WebApkServiceImpl";
private final Context mContext;
// TODO(hanxi): Removes when org.chromium.minting.R.java is in the web_apk.dex.
@@ -34,7 +34,7 @@ public class MintedServiceImpl extends IMintedApi.Stub {
private final String mExpectedHostPackage;
private final Set<Integer> mAuthorizedUids = new HashSet<>();
- public MintedServiceImpl(Context context, Bundle bundle) {
+ public WebApkServiceImpl(Context context, Bundle bundle) {
mContext = context;
mAppIcon = bundle.getInt(KEY_APP_ICON_ID);
mExpectedHostPackage = bundle.getString(KEY_EXPECTED_HOST_BROWSER);

Powered by Google App Engine
This is Rietveld 408576698