Chromium Code Reviews| Index: chrome/android/java/src/org/chromium/chrome/browser/widget/bottomsheet/BottomSheet.java |
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/widget/bottomsheet/BottomSheet.java b/chrome/android/java/src/org/chromium/chrome/browser/widget/bottomsheet/BottomSheet.java |
| index 437c7351aab2a9149e1444944943a4152a23a030..e911a94df18fb221498a67e5e35cdd2c2a578bf0 100644 |
| --- a/chrome/android/java/src/org/chromium/chrome/browser/widget/bottomsheet/BottomSheet.java |
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/widget/bottomsheet/BottomSheet.java |
| @@ -1160,8 +1160,9 @@ public class BottomSheet |
| SharedPreferences preferences = ContextUtils.getAppSharedPreferences(); |
| if (preferences.getBoolean(BOTTOM_SHEET_HELP_BUBBLE_SHOWN, false)) return; |
| - ViewAnchoredTextBubble helpBubble = new ViewAnchoredTextBubble( |
| - getContext(), mControlContainer, R.string.bottom_sheet_help_bubble_message); |
| + ViewAnchoredTextBubble helpBubble = new ViewAnchoredTextBubble(getContext(), |
| + mControlContainer, R.string.bottom_sheet_help_bubble_message, |
| + R.string.bottom_sheet_help_bubble_message); |
|
David Trainor- moved to gerrit
2017/05/10 22:48:11
Can you file a bug against twellington@ to triage
Theresa
2017/05/11 15:35:27
Can you please file, assign to hannahs@ and cc me?
shaktisahu
2017/05/11 17:22:32
I checked with srahim@. The string "Pull up to see
|
| int inset = getContext().getResources().getDimensionPixelSize( |
| R.dimen.bottom_sheet_help_bubble_inset); |
| helpBubble.setInsetPx(0, inset, 0, inset); |