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

Side by Side Diff: chrome/android/java/res/values-v21/styles.xml

Issue 928643003: Upstream Chrome for Android Cast. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missing resource, allowing casting from Chrome Shell Created 5 years, 9 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 2014 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2014 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 <resources> 6 <resources>
7 <!-- Preferences --> 7 <!-- Preferences -->
8 <style name="PreferencesTheme" parent="ThemeWithActionBar"> 8 <style name="PreferencesTheme" parent="ThemeWithActionBar">
9 <item name="android:textColorLink">@color/pref_accent_color</item> 9 <item name="android:textColorLink">@color/pref_accent_color</item>
10 <item name="android:alertDialogTheme">@style/PreferencesDialogTheme</ite m> 10 <item name="android:alertDialogTheme">@style/PreferencesDialogTheme</ite m>
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 <style name="PreferenceLayout" parent="PreferenceLayoutBase" /> 51 <style name="PreferenceLayout" parent="PreferenceLayoutBase" />
52 52
53 <!-- Buttons --> 53 <!-- Buttons -->
54 <style name="ButtonCompat" parent="ButtonCompatBase"> 54 <style name="ButtonCompat" parent="ButtonCompatBase">
55 <item name="android:background">@drawable/button_compat</item> 55 <item name="android:background">@drawable/button_compat</item>
56 <item name="android:fontFamily">sans-serif-medium</item> 56 <item name="android:fontFamily">sans-serif-medium</item>
57 </style> 57 </style>
58 <style name="ButtonCompatBorderless" parent="ButtonCompat"> 58 <style name="ButtonCompatBorderless" parent="ButtonCompat">
59 <item name="android:background">@drawable/button_borderless_compat</item > 59 <item name="android:background">@drawable/button_borderless_compat</item >
60 </style> 60 </style>
61 61 <!-- Cast notification -->
62 <!-- Note: the values below are copied from PlayMovies/YouTube's style. -->
63 <style name="RemoteNotificationTitle"
64 parent="@android:style/TextAppearance.Material.Notification.Title">
65 <item name="android:layout_marginBottom">4dp</item>
66 </style>
67 <style name="RemoteNotificationText"
68 parent="@android:style/TextAppearance.Material.Notification.Line2"/>
69 <style name="RemoteNotificationProgressBar" parent="@android:style/Widget.Pr ogressBar.Horizontal">
Bernhard Bauer 2015/03/13 12:18:01 Break before parent to fit into 80 columns.
aberent 2015/03/13 19:04:34 The rest of the file is wider than 80 columns, wit
70 <item name="android:minHeight">5dp</item>
71 </style>
72
62 </resources> 73 </resources>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698