| OLD | NEW | 
|---|
| 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  Loading... | 
| 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> | 
| OLD | NEW | 
|---|