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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/tab/TabDelegateFactory.java

Issue 2005053002: WebAPKs: Open links which are outside of WebAPK scope in Chrome not in WebAPK (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/tab/TabDelegateFactory.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/tab/TabDelegateFactory.java b/chrome/android/java/src/org/chromium/chrome/browser/tab/TabDelegateFactory.java
index ac731f266fff484a13e769312a7b4ff636d7ed78..6af7d284a054fc0846be6303b18da9a46f745508 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/tab/TabDelegateFactory.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/tab/TabDelegateFactory.java
@@ -29,7 +29,7 @@ public class TabDelegateFactory {
* @return The {@link InterceptNavigationDelegate} to be used for this tab.
*/
public InterceptNavigationDelegateImpl createInterceptNavigationDelegate(Tab tab) {
- return new InterceptNavigationDelegateImpl(tab);
+ return InterceptNavigationDelegateImpl.createDefault(tab);
}
/**

Powered by Google App Engine
This is Rietveld 408576698