| 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 689e58d4f87637aa274c9481dc034be6d5e0e555..5b9fd317a83a21f9fc92017cc6e9732fca4f938d 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;
|
| @@ -72,4 +73,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);
|
| + }
|
| }
|
|
|