| Index: chrome/android/java/src/org/chromium/chrome/browser/tab/Tab.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/tab/Tab.java b/chrome/android/java/src/org/chromium/chrome/browser/tab/Tab.java
|
| index e376d28cf50b9f3c0dd08b20e903d4dd5841cc18..070769dbbecb1408e1c696ea2c94a187f6d7cf88 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/tab/Tab.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/tab/Tab.java
|
| @@ -1829,6 +1829,8 @@ public class Tab implements ViewGroup.OnHierarchyChangeListener,
|
| mContentViewCore.setContentViewClient(mContentViewClient);
|
| }
|
|
|
| + mDownloadDelegate = new ChromeDownloadDelegate(mThemedApplicationContext, this);
|
| +
|
| assert mNativeTabAndroid != 0;
|
| nativeInitWebContents(
|
| mNativeTabAndroid, mIncognito, mContentViewCore, mWebContentsDelegate,
|
| @@ -1858,10 +1860,6 @@ public class Tab implements ViewGroup.OnHierarchyChangeListener,
|
| // web views.
|
| mContentViewCore.setShouldSetAccessibilityFocusOnPageLoad(true);
|
|
|
| - mDownloadDelegate = new ChromeDownloadDelegate(
|
| - mThemedApplicationContext, this);
|
| - cvc.setDownloadDelegate(mDownloadDelegate);
|
| -
|
| setInterceptNavigationDelegate(mDelegateFactory.createInterceptNavigationDelegate(
|
| this));
|
|
|
|
|