diff options
| author | Michael Kolb <kolby@google.com> | 2010-12-10 14:29:51 -0800 |
|---|---|---|
| committer | Michael Kolb <kolby@google.com> | 2010-12-10 16:59:15 -0800 |
| commit | 18eb377badf8e6f9ea2925bcb7e978facf3171d9 (patch) | |
| tree | 49109d038ead29ab5d562f714a356e0ff82cf0b0 /src/com/android/browser/IntentHandler.java | |
| parent | 4b59db8bc6b609307dfcb346283378c5ea993d7c (diff) | |
| download | packages_apps_Browser-18eb377badf8e6f9ea2925bcb7e978facf3171d9.tar.gz packages_apps_Browser-18eb377badf8e6f9ea2925bcb7e978facf3171d9.tar.bz2 packages_apps_Browser-18eb377badf8e6f9ea2925bcb7e978facf3171d9.zip | |
Propagate incognito mode to child tab
Bug: http://b/issue?id=3234294
add parent tab parameter to open tab method
inherit parent's private browsing status
remove one unnecessary openTab signature
Change-Id: I4edf002798d8bbdf4cafa58e5b5b442e74d5cb28
Diffstat (limited to 'src/com/android/browser/IntentHandler.java')
| -rw-r--r-- | src/com/android/browser/IntentHandler.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/browser/IntentHandler.java b/src/com/android/browser/IntentHandler.java index 6e0236fa5..cbbc48236 100644 --- a/src/com/android/browser/IntentHandler.java +++ b/src/com/android/browser/IntentHandler.java @@ -155,7 +155,7 @@ public class IntentHandler { // MAX_TABS. Then the url will be opened in the current // tab. If a new tab is created, it will have "true" for // exit on close. - mController.openTabAndShow(urlData, true, appId); + mController.openTabAndShow(null, urlData, true, appId); } } } else { |
