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

Side by Side Diff: chrome/android/java/res/values-v17/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:textAppearanceMedium">@style/PreferenceTextAppearanc eMedium</item> 10 <item name="android:textAppearanceMedium">@style/PreferenceTextAppearanc eMedium</item>
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 <item name="android:windowAnimationStyle">@null</item> 219 <item name="android:windowAnimationStyle">@null</item>
220 <item name="android:windowBackground">@android:color/transparent</item> 220 <item name="android:windowBackground">@android:color/transparent</item>
221 <item name="android:windowCloseOnTouchOutside">false</item> 221 <item name="android:windowCloseOnTouchOutside">false</item>
222 <item name="android:windowContentOverlay">@null</item> 222 <item name="android:windowContentOverlay">@null</item>
223 <item name="android:windowFrame">@null</item> 223 <item name="android:windowFrame">@null</item>
224 <item name="android:windowFullscreen">false</item> 224 <item name="android:windowFullscreen">false</item>
225 <item name="android:windowIsFloating">true</item> 225 <item name="android:windowIsFloating">true</item>
226 <item name="android:windowIsTranslucent">true</item> 226 <item name="android:windowIsTranslucent">true</item>
227 <item name="android:windowNoTitle">true</item> 227 <item name="android:windowNoTitle">true</item>
228 </style> 228 </style>
229 229 <!-- Video Fling -->
Bernhard Bauer 2015/03/13 12:18:01 Cast?
aberent 2015/03/13 19:04:34 Done.
230 <style
231 name="RemoteNotificationTitle"
232 parent="@android:style/TextAppearance.StatusBar.EventContent.Title"/>
233 <style
234 name="RemoteNotificationText"
235 parent="@android:style/TextAppearance.StatusBar.EventContent"/>
236 <style
237 name="RemoteNotificationProgressBar"
238 parent="@android:style/Widget.Holo.ProgressBar.Horizontal"/>
239 <style name="CastMediaRouteButton" parent="@style/Widget.MediaRouter.MediaRo uteButton">
240 <item name="android:background">@null</item>
241 <item name="android:paddingTop">0dp</item>
242 <item name="android:paddingBottom">0dp</item>
243 <item name="android:paddingStart">0dp</item>
244 <item name="android:paddingEnd">0dp</item>
245 <item name="externalRouteEnabledDrawable">@drawable/ic_cast_dark</item>
246 </style>
247
230 </resources> 248 </resources>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698