| OLD | NEW |
| (Empty) |
| 1 <?xml version="1.0" encoding="utf-8"?> | |
| 2 <!-- Copyright 2015 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 | |
| 7 xmlns:android="http://schemas.android.com/apk/res/android" | |
| 8 xmlns:chrome="http://schemas.android.com/apk/res-auto" | |
| 9 android:layout_width="match_parent" | |
| 10 android:layout_height="wrap_content" | |
| 11 android:orientation="vertical" | |
| 12 android:paddingTop="10dp" | |
| 13 android:paddingBottom="28dp" > | |
| 14 | |
| 15 <TextView | |
| 16 android:id="@+id/text_view" | |
| 17 android:layout_width="match_parent" | |
| 18 android:layout_height="wrap_content" | |
| 19 android:textSize="14sp" /> | |
| 20 | |
| 21 <org.chromium.ui.widget.ButtonCompat | |
| 22 android:id="@+id/enable_sync_button" | |
| 23 android:layout_width="wrap_content" | |
| 24 android:layout_height="wrap_content" | |
| 25 android:layout_marginTop="24dp" | |
| 26 android:text="@string/ntp_recent_tabs_sync_enable_sync_button" | |
| 27 android:textColor="#fff" | |
| 28 chrome:buttonColor="@color/light_active_color" /> | |
| 29 | |
| 30 </LinearLayout> | |
| OLD | NEW |