Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1218)

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/widget/textbubble/ViewAnchoredTextBubble.java

Issue 2870313002: In-product-help: Accessibility text (Closed)
Patch Set: strings Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698