Index: content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java |
diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java |
index 2f8857816be0057ec75099785181429d7c083b8b..f3a1da8075085b2ef5df4884041e005c68163f85 100644 |
--- a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java |
+++ b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java |
@@ -675,14 +675,6 @@ public class ContentViewCore |
mContainerView = containerView; |
mPositionObserver = new ViewPositionObserver(mContainerView); |
- String contentDescription = "Web View"; |
- if (R.string.accessibility_content_view == 0) { |
- Log.w(TAG, "Setting contentDescription to 'Web View' as no value was specified."); |
- } else { |
- contentDescription = mContext.getResources().getString( |
- R.string.accessibility_content_view); |
- } |
- mContainerView.setContentDescription(contentDescription); |
mContainerView.setWillNotDraw(false); |
mContainerView.setClickable(true); |
TraceEvent.end(); |