| Index: chrome/android/java/src/org/chromium/chrome/browser/tab/InterceptNavigationDelegateImpl.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/tab/InterceptNavigationDelegateImpl.java b/chrome/android/java/src/org/chromium/chrome/browser/tab/InterceptNavigationDelegateImpl.java
|
| index 5932b6f8a51fae50855bb2b7b49598192b7ae372..8ca414af6aff7e22ce35fda87dc9dd3f1e9e5721 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/tab/InterceptNavigationDelegateImpl.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/tab/InterceptNavigationDelegateImpl.java
|
| @@ -20,7 +20,7 @@ import org.chromium.content_public.browser.NavigationController;
|
| import org.chromium.content_public.browser.WebContents;
|
| import org.chromium.content_public.common.ConsoleMessageLevel;
|
| import org.chromium.minting.lib.client.NavigationClient;
|
| -import org.chromium.minting.lib.client.WebAPKValidator;
|
| +import org.chromium.minting.lib.client.WebApkValidator;
|
|
|
| /**
|
| * Class that controls navigations and allows to intercept them. It is used on Android to 'convert'
|
| @@ -256,10 +256,10 @@ public class InterceptNavigationDelegateImpl implements InterceptNavigationDeleg
|
|
|
| private void onOverrideUrlLoadingAndLaunchIntentToMintedAPK(String url) {
|
| onOverrideUrlLoadingAndLaunchIntent();
|
| - // {@link WebAPKValidator#queryWebAPKPackage()} is expensive. We should not be calling it
|
| + // {@link WebApkValidator#queryWebAPKPackage()} is expensive. We should not be calling it
|
| // multiple times per navigation.
|
| String webAPKPackageName =
|
| - WebAPKValidator.queryWebAPKPackage(mTab.getApplicationContext(), url);
|
| + WebApkValidator.queryWebAPKPackage(mTab.getApplicationContext(), url);
|
| Intent intent = NavigationClient.createIntentToLaunchWebAPK(webAPKPackageName,
|
| mTab.getActivity().getPackageName(), url);
|
| mTab.getActivity().startActivity(intent);
|
|
|