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

Unified Diff: chrome/android/java/res/layout/autofill_card_unmask_prompt.xml

Issue 923803003: Fix up a few more lint warnings in chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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/res/layout/autofill_card_unmask_prompt.xml
diff --git a/chrome/android/java/res/layout/autofill_card_unmask_prompt.xml b/chrome/android/java/res/layout/autofill_card_unmask_prompt.xml
index 0d1a3eb9c35f547d4d2c1f4055b3d74f4ac93dbc..60e44719c2592e723af8c18ce1bd13c7248a6eea 100644
--- a/chrome/android/java/res/layout/autofill_card_unmask_prompt.xml
+++ b/chrome/android/java/res/layout/autofill_card_unmask_prompt.xml
@@ -61,7 +61,8 @@
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginStart="8dp"
- android:layout_marginEnd="16dp" />
+ android:layout_marginEnd="16dp"
+ android:contentDescription="@null" />
</LinearLayout>
</LinearLayout>
@@ -87,12 +88,14 @@
android:layout_marginTop="30dp"
android:visibility="gone" />
+ <!-- TODO(estade): add a real content description for this image. -->
<ImageView
android:id="@+id/verification_success"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/verify_checkmark"
- android:visibility="gone" />
+ android:visibility="gone"
+ android:contentDescription="@null" />
<TextView
android:id="@+id/verification_message"

Powered by Google App Engine
This is Rietveld 408576698