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

Side by Side 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: Undo changes in autofill_profile_editor 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 unified diff | Download patch
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
3 3
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 8 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
9 android:layout_width="wrap_content" 9 android:layout_width="wrap_content"
10 android:layout_height="wrap_content"> 10 android:layout_height="wrap_content">
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 android:layout_marginStart="16dp" 75 android:layout_marginStart="16dp"
76 android:ems="4" 76 android:ems="4"
77 android:hint="@string/card_unmask_input_hint" /> 77 android:hint="@string/card_unmask_input_hint" />
78 78
79 <ImageView 79 <ImageView
80 android:id="@+id/cvc_hint_image" 80 android:id="@+id/cvc_hint_image"
81 android:layout_width="wrap_content" 81 android:layout_width="wrap_content"
82 android:layout_height="wrap_content" 82 android:layout_height="wrap_content"
83 android:layout_gravity="center_vertical" 83 android:layout_gravity="center_vertical"
84 android:layout_marginStart="8dp" 84 android:layout_marginStart="8dp"
85 android:layout_marginEnd="16dp" /> 85 android:layout_marginEnd="16dp"
86 android:contentDescription="@null" />
86 </LinearLayout> 87 </LinearLayout>
87 88
88 <TextView 89 <TextView
89 android:id="@+id/error_message" 90 android:id="@+id/error_message"
90 android:layout_width="match_parent" 91 android:layout_width="match_parent"
91 android:layout_height="wrap_content" 92 android:layout_height="wrap_content"
92 android:textSize="16sp" 93 android:textSize="16sp"
93 android:layout_marginStart="24dp" 94 android:layout_marginStart="24dp"
94 android:layout_marginEnd="10dp" 95 android:layout_marginEnd="10dp"
95 android:gravity="start" 96 android:gravity="start"
(...skipping 23 matching lines...) Expand all
119 android:visibility="gone"> 120 android:visibility="gone">
120 121
121 <ProgressBar 122 <ProgressBar
122 android:id="@+id/verification_progress_bar" 123 android:id="@+id/verification_progress_bar"
123 android:layout_width="36dp" 124 android:layout_width="36dp"
124 android:layout_height="36dp" 125 android:layout_height="36dp"
125 android:layout_marginBottom="8dp" 126 android:layout_marginBottom="8dp"
126 android:layout_marginTop="30dp" 127 android:layout_marginTop="30dp"
127 android:visibility="gone" /> 128 android:visibility="gone" />
128 129
130 <!-- TODO(estade): add a real content description for this image. -->
129 <ImageView 131 <ImageView
130 android:id="@+id/verification_success" 132 android:id="@+id/verification_success"
131 android:layout_width="wrap_content" 133 android:layout_width="wrap_content"
132 android:layout_height="wrap_content" 134 android:layout_height="wrap_content"
133 android:src="@drawable/verify_checkmark" 135 android:src="@drawable/verify_checkmark"
134 android:visibility="gone" /> 136 android:visibility="gone"
137 android:contentDescription="@null" />
135 138
136 <TextView 139 <TextView
137 android:id="@+id/verification_message" 140 android:id="@+id/verification_message"
138 android:layout_width="wrap_content" 141 android:layout_width="wrap_content"
139 android:layout_height="wrap_content" 142 android:layout_height="wrap_content"
140 android:textColor="?android:attr/colorAccent" 143 android:textColor="?android:attr/colorAccent"
141 android:textSize="20dp" /> 144 android:textSize="20dp" />
142 </LinearLayout> 145 </LinearLayout>
143 </RelativeLayout> 146 </RelativeLayout>
OLDNEW
« no previous file with comments | « build/android/lint/suppressions.xml ('k') | chrome/android/java/res/layout/password_generation_popup_suggestion.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698