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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/webapps/FullScreenDelegateFactory.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: chrome/android/java/src/org/chromium/chrome/browser/webapps/FullScreenDelegateFactory.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/webapps/FullScreenDelegateFactory.java b/chrome/android/java/src/org/chromium/chrome/browser/webapps/FullScreenDelegateFactory.java
index 483008ba63bb7161ea10383bd21b55b75ba0b04b..989aa7bd063726e1a74640d9f266e0a8ebbc273a 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/webapps/FullScreenDelegateFactory.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/webapps/FullScreenDelegateFactory.java
@@ -15,7 +15,7 @@ import org.chromium.chrome.browser.tab.TabContextMenuItemDelegate;
import org.chromium.chrome.browser.tab.TabDelegateFactory;
import org.chromium.chrome.browser.tab.TabWebContentsDelegateAndroid;
import org.chromium.chrome.browser.tab.TopControlsVisibilityDelegate;
-import org.chromium.minting.lib.client.WebAPKValidator;
+import org.chromium.minting.lib.client.WebApkValidator;
/**
* A {@link TabDelegateFactory} class to be used in all {@link Tab} instances owned
@@ -46,7 +46,7 @@ public class FullScreenDelegateFactory extends TabDelegateFactory {
intent.setPackage(context.getPackageName());
webappInfo.setWebappIntentExtras(intent);
intent.putExtra(ShortcutHelper.EXTRA_MAC, ShortcutHelper.getEncodedMac(context, url));
- if (webappInfo.packageName().equals(WebAPKValidator.queryWebAPKPackage(context, url))) {
+ if (webappInfo.packageName().equals(WebApkValidator.queryWebAPKPackage(context, url))) {
intent.putExtra(ShortcutHelper.EXTRA_URL, mTab.getUrl());
}
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

Powered by Google App Engine
This is Rietveld 408576698