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

Side by Side Diff: ui/android/java/res/layout/autofill_card_unmask_prompt.xml

Issue 828063004: Update Android Card Unmask prompt to rely on the controller a bit more. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use newt's description Created 5 years, 11 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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 8 <LinearLayout 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"
11 android:orientation="vertical"> 11 android:orientation="vertical">
12 12
13 <TextView 13 <TextView
14 android:id="@+id/card_unmask_instructions"
14 android:layout_width="match_parent" 15 android:layout_width="match_parent"
15 android:layout_height="wrap_content" 16 android:layout_height="wrap_content"
16 android:text="@string/card_unmask_prompt_content_text"
17 android:textSize="20sp" 17 android:textSize="20sp"
18 android:paddingStart="5dp" 18 android:paddingStart="5dp"
19 android:paddingEnd="5dp" 19 android:paddingEnd="5dp"
20 android:paddingBottom="5dp" 20 android:paddingBottom="5dp"
21 android:paddingTop="5dp" 21 android:paddingTop="5dp"
22 android:gravity="start" 22 android:gravity="start"
23 /> 23 />
24 24
25 <LinearLayout 25 <LinearLayout
26 android:layout_width="match_parent" 26 android:layout_width="match_parent"
(...skipping 14 matching lines...) Expand all
41 <TextView 41 <TextView
42 android:id="@+id/card_unmask_verification_message" 42 android:id="@+id/card_unmask_verification_message"
43 android:layout_width="wrap_content" 43 android:layout_width="wrap_content"
44 android:layout_height="wrap_content" 44 android:layout_height="wrap_content"
45 android:gravity="start" 45 android:gravity="start"
46 android:visibility="gone" 46 android:visibility="gone"
47 /> 47 />
48 </LinearLayout> 48 </LinearLayout>
49 49
50 </LinearLayout> 50 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698