| Index: chrome/android/java/src/org/chromium/chrome/browser/widget/textbubble/ViewAnchoredTextBubble.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/widget/textbubble/ViewAnchoredTextBubble.java b/chrome/android/java/src/org/chromium/chrome/browser/widget/textbubble/ViewAnchoredTextBubble.java
|
| index 816acb3c0dbb13d5938b121cb51a58e8114ac14a..2895a79b23c09e67a0634258f569091317bcbd73 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/widget/textbubble/ViewAnchoredTextBubble.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/widget/textbubble/ViewAnchoredTextBubble.java
|
| @@ -38,9 +38,11 @@ public class ViewAnchoredTextBubble extends TextBubble
|
| * @param context Context to draw resources from.
|
| * @param anchorView The {@link View} to anchor to.
|
| * @param stringId The id of the string resource for the text that should be shown.
|
| + * @param accessibilityStringId The id of the string resource of the accessibility text.
|
| */
|
| - public ViewAnchoredTextBubble(Context context, View anchorView, @StringRes int stringId) {
|
| - super(context, anchorView.getRootView(), stringId);
|
| + public ViewAnchoredTextBubble(Context context, View anchorView, @StringRes int stringId,
|
| + @StringRes int accessibilityStringId) {
|
| + super(context, anchorView.getRootView(), stringId, accessibilityStringId);
|
| mAnchorView = anchorView;
|
|
|
| mViewPositionObserver = new ViewPositionObserver(mAnchorView);
|
|
|