| Index: chrome/android/java/src/org/chromium/chrome/browser/webapps/WebappDelegateFactory.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/webapps/WebappDelegateFactory.java b/chrome/android/java/src/org/chromium/chrome/browser/webapps/WebappDelegateFactory.java
|
| index 1eec43afb535d3bc9361103f67816721a8c31b0a..396ead70ec91842aa5a3dfdcfaec1f2d7fa26278 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/webapps/WebappDelegateFactory.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/webapps/WebappDelegateFactory.java
|
| @@ -10,6 +10,7 @@ import android.text.TextUtils;
|
| import org.chromium.base.ContextUtils;
|
| import org.chromium.chrome.browser.ShortcutHelper;
|
| import org.chromium.chrome.browser.tab.BrowserControlsVisibilityDelegate;
|
| +import org.chromium.chrome.browser.tab.InterceptNavigationDelegateImpl;
|
| import org.chromium.chrome.browser.tab.Tab;
|
| import org.chromium.chrome.browser.tab.TabDelegateFactory;
|
| import org.chromium.chrome.browser.tab.TabWebContentsDelegateAndroid;
|
| @@ -71,4 +72,9 @@ public class WebappDelegateFactory extends FullScreenDelegateFactory {
|
| public BrowserControlsVisibilityDelegate createBrowserControlsVisibilityDelegate(Tab tab) {
|
| return new WebappBrowserControlsDelegate(mActivity, tab);
|
| }
|
| +
|
| + @Override
|
| + public InterceptNavigationDelegateImpl createInterceptNavigationDelegate(Tab tab) {
|
| + return new WebappInterceptNavigationDelegate(mActivity, tab);
|
| + }
|
| }
|
|
|