Chromium Code Reviews| Index: chrome/android/java/src/org/chromium/chrome/browser/toolbar/TabSwitcherCallout.java |
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/toolbar/TabSwitcherCallout.java b/chrome/android/java/src/org/chromium/chrome/browser/toolbar/TabSwitcherCallout.java |
| index bbef9497ddb7e24a38305c8590fcbfffbadbf7c3..b08832117dd767405f4e663c4b1f2c6c8f3f452d 100644 |
| --- a/chrome/android/java/src/org/chromium/chrome/browser/toolbar/TabSwitcherCallout.java |
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/toolbar/TabSwitcherCallout.java |
| @@ -34,13 +34,13 @@ public class TabSwitcherCallout { |
| */ |
| @TargetApi(Build.VERSION_CODES.LOLLIPOP) |
| public static TextBubble showIfNecessary(Context context, View tabSwitcherButton) { |
| - if (!isTabSwitcherCalloutNecessary()) return null; |
| + // if (!isTabSwitcherCalloutNecessary()) return null; |
|
Ted C
2017/04/12 18:05:57
?
David Trainor- moved to gerrit
2017/04/12 18:59:37
Doesn't everyone want to see the tab switcher call
|
| setIsTabSwitcherCalloutNecessary(false); |
| ViewAnchoredTextBubble bubble = new ViewAnchoredTextBubble( |
| context, tabSwitcherButton, R.string.tab_switcher_callout_body); |
| bubble.setDismissOnTouchInteraction(true); |
| - bubble.setAutoDismissTimeout(TAB_SWITCHER_CALLOUT_DISMISS_MS); |
| + // bubble.setAutoDismissTimeout(TAB_SWITCHER_CALLOUT_DISMISS_MS); |
| int yInsetPx = (int) (Y_OVERLAP_DP * context.getResources().getDisplayMetrics().density); |
| bubble.setInsetPx(0, yInsetPx, 0, yInsetPx); |
| bubble.show(); |