| OLD | NEW |
| (Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2016 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. --> |
| 5 |
| 6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 7 android:layout_width="match_parent" |
| 8 android:layout_height="wrap_content" |
| 9 android:orientation="vertical" > |
| 10 |
| 11 <TextView |
| 12 android:id="@+id/signed_in_not_synced" |
| 13 style="@style/PrivacyDisclaimerText" /> |
| 14 |
| 15 <TextView |
| 16 android:id="@+id/signed_in_synced" |
| 17 style="@style/PrivacyDisclaimerText" /> |
| 18 |
| 19 <TextView |
| 20 android:id="@+id/other_forms_of_browsing_history" |
| 21 style="@style/PrivacyDisclaimerText" /> |
| 22 |
| 23 <Button |
| 24 android:id="@+id/clear_browsing_data_button" |
| 25 android:layout_width="match_parent" |
| 26 android:layout_height="wrap_content" |
| 27 android:layout_marginTop="16dp" |
| 28 style="@style/ButtonCompatBorderless" |
| 29 android:paddingTop="16dp" |
| 30 android:paddingBottom="16dp" |
| 31 android:paddingStart="16dp" |
| 32 android:paddingEnd="16dp" |
| 33 android:gravity="center_vertical|start" |
| 34 android:text="@string/open_clear_browsing_data_dialog_button" |
| 35 android:textAllCaps="true" |
| 36 android:textColor="@color/light_active_color" |
| 37 android:textSize="16sp" /> |
| 38 </LinearLayout> |
| OLD | NEW |