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

Side by Side Diff: chrome/android/java/res/layout/recent_tabs_sync_promo.xml

Issue 1235033003: Move ButtonCompat to ui/android/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove buttonColor from chrome/android/. Created 5 years, 5 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 2015 The Chromium Authors. All rights reserved. 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 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 5
6 <LinearLayout 6 <LinearLayout
7 xmlns:android="http://schemas.android.com/apk/res/android" 7 xmlns:android="http://schemas.android.com/apk/res/android"
8 xmlns:chrome="http://schemas.android.com/apk/res-auto" 8 xmlns:chrome="http://schemas.android.com/apk/res-auto"
9 android:layout_width="match_parent" 9 android:layout_width="match_parent"
10 android:layout_height="wrap_content" 10 android:layout_height="wrap_content"
11 android:orientation="vertical" 11 android:orientation="vertical"
12 android:paddingTop="10dp" 12 android:paddingTop="10dp"
13 android:paddingBottom="28dp" > 13 android:paddingBottom="28dp" >
14 14
15 <TextView 15 <TextView
16 android:id="@+id/text_view" 16 android:id="@+id/text_view"
17 android:layout_width="match_parent" 17 android:layout_width="match_parent"
18 android:layout_height="wrap_content" 18 android:layout_height="wrap_content"
19 android:textSize="14sp" /> 19 android:textSize="14sp" />
20 20
21 <org.chromium.chrome.browser.widget.ButtonCompat 21 <org.chromium.ui.widget.ButtonCompat
22 android:id="@+id/enable_sync_button" 22 android:id="@+id/enable_sync_button"
23 android:layout_width="wrap_content" 23 android:layout_width="wrap_content"
24 android:layout_height="wrap_content" 24 android:layout_height="wrap_content"
25 android:layout_marginTop="24dp" 25 android:layout_marginTop="24dp"
26 android:text="@string/ntp_recent_tabs_sync_enable_sync_button" 26 android:text="@string/ntp_recent_tabs_sync_enable_sync_button"
27 android:textColor="#fff" 27 android:textColor="#fff"
28 chrome:buttonColor="@color/light_active_color" /> 28 chrome:buttonColor="@color/light_active_color" />
29 29
30 </LinearLayout> 30 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698