| Index: chrome/android/java/src/org/chromium/chrome/browser/externalnav/ExternalNavigationDelegate.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/externalnav/ExternalNavigationDelegate.java b/chrome/android/java/src/org/chromium/chrome/browser/externalnav/ExternalNavigationDelegate.java
|
| index 25019636f2abf52f2707ffb0c93daa2bb1c2ca25..0b0d703f4a0e6914674bc1b6b45fe57e53e235a4 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/externalnav/ExternalNavigationDelegate.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/externalnav/ExternalNavigationDelegate.java
|
| @@ -8,7 +8,7 @@ import android.content.ComponentName;
|
| import android.content.Intent;
|
|
|
| import org.chromium.chrome.browser.externalnav.ExternalNavigationHandler.OverrideUrlLoadingResult;
|
| -import org.chromium.chrome.browser.tab.Tab;
|
| +//import org.chromium.chrome.browser.tab.Tab;
|
|
|
| import java.util.List;
|
|
|
| @@ -62,25 +62,25 @@ interface ExternalNavigationDelegate {
|
| * intent. Give the user the opportunity to cancel the action. And if it is canceled, a
|
| * navigation will happen in Chrome.
|
| */
|
| - void startIncognitoIntent(Intent intent, String referrerUrl, String fallbackUrl, Tab tab,
|
| - boolean needsToCloseTab);
|
| +// void startIncognitoIntent(Intent intent, String referrerUrl, String fallbackUrl, Tab tab,
|
| +// boolean needsToCloseTab);
|
|
|
| /**
|
| * @param tab The current tab.
|
| * @return Whether we should block the navigation and request file access before proceeding.
|
| */
|
| - boolean shouldRequestFileAccess(Tab tab);
|
| -
|
| - /**
|
| - * Trigger a UI affordance that will ask the user to grant file access. After the access
|
| - * has been granted or denied, continue loading the specified file URL.
|
| - *
|
| - * @param intent The intent to continue loading the file URL.
|
| - * @param referrerUrl The HTTP referrer URL.
|
| - * @param tab The current tab.
|
| - * @param needsToCloseTab Whether this action should close the current tab.
|
| - */
|
| - void startFileIntent(Intent intent, String referrerUrl, Tab tab, boolean needsToCloseTab);
|
| +// boolean shouldRequestFileAccess(Tab tab);
|
| +
|
| +// /**
|
| +// * Trigger a UI affordance that will ask the user to grant file access. After the access
|
| +// * has been granted or denied, continue loading the specified file URL.
|
| +// *
|
| +// * @param intent The intent to continue loading the file URL.
|
| +// * @param referrerUrl The HTTP referrer URL.
|
| +// * @param tab The current tab.
|
| +// * @param needsToCloseTab Whether this action should close the current tab.
|
| +// */
|
| +// void startFileIntent(Intent intent, String referrerUrl, Tab tab, boolean needsToCloseTab);
|
|
|
| /**
|
| * Clobber the current tab and try not to pass an intent when it should be handled by Chrome
|
| @@ -92,7 +92,7 @@ interface ExternalNavigationDelegate {
|
| * @return OverrideUrlLoadingResult (if the tab has been clobbered, or we're launching an
|
| * intent.)
|
| */
|
| - OverrideUrlLoadingResult clobberCurrentTab(String url, String referrerUrl, Tab tab);
|
| +// OverrideUrlLoadingResult clobberCurrentTab(String url, String referrerUrl, Tab tab);
|
|
|
| /**
|
| * Determine if the Chrome app is in the foreground.
|
|
|