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

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

Issue 2365733002: Inherit default text color from MainTheme. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated CL with android:textColor added through DownloadsActivityTheme as well as reusing style/Pay… Created 4 years, 2 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 2
3 <!-- Copyright 2016 The Chromium Authors. All rights reserved. 3 <!-- Copyright 2016 The Chromium Authors. All rights reserved.
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 <org.chromium.chrome.browser.widget.DualControlLayout 8 <org.chromium.chrome.browser.widget.DualControlLayout
9 xmlns:android="http://schemas.android.com/apk/res/android" 9 xmlns:android="http://schemas.android.com/apk/res/android"
10 android:layout_width="wrap_content" 10 android:layout_width="wrap_content"
11 android:layout_height="wrap_content" > 11 android:layout_height="wrap_content" >
12 12
13 <!-- Label for the data. --> 13 <!-- Label for the data. -->
14 <TextView 14 <TextView
15 android:layout_width="wrap_content" 15 android:layout_width="wrap_content"
16 android:layout_height="wrap_content" 16 android:layout_height="wrap_content"
17 android:textColor="@color/infobar_descriptive_text_color" 17 android:textColor="@color/infobar_descriptive_text_color"
18 android:textSize="@dimen/infobar_text_size" /> 18 android:textSize="@dimen/infobar_text_size" />
19 19
20 <!-- Shows the actively selected item. --> 20 <!-- Shows the actively selected item. -->
21 <TextView 21 <TextView
22 android:layout_width="wrap_content" 22 android:layout_width="wrap_content"
23 android:layout_height="wrap_content" 23 android:layout_height="wrap_content"
24 android:textColor="@color/default_text_color"
25 android:textSize="@dimen/infobar_text_size" /> 24 android:textSize="@dimen/infobar_text_size" />
26 25
27 </org.chromium.chrome.browser.widget.DualControlLayout> 26 </org.chromium.chrome.browser.widget.DualControlLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698