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

Side by Side Diff: ui/android/java/res/values-v17/styles.xml

Issue 2931443003: Add support for Android spellcheck menu in Chrome/WebViews (Closed)
Patch Set: Respond to latest comments Created 3 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 2
3 <!-- Copyright 2013 The Chromium Authors. All rights reserved. 3 <!-- Copyright 2013 The Chromium Authors. All rights reserved.
4 4
5 Use of this source code is governed by a BSD-style license that can be 5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 6 found in the LICENSE file.
7 --> 7 -->
8 8
9 <resources> 9 <resources>
10 <style name="DropdownPopupWindow" parent="@android:style/Widget.ListPopupWin dow"> 10 <style name="DropdownPopupWindow" parent="@android:style/Widget.ListPopupWin dow">
(...skipping 20 matching lines...) Expand all
31 <item name="android:clickable">true</item> 31 <item name="android:clickable">true</item>
32 <item name="android:gravity">center_vertical|center_horizontal</item> 32 <item name="android:gravity">center_vertical|center_horizontal</item>
33 </style> 33 </style>
34 <style name="ButtonCompat" parent="ButtonCompatBase"> 34 <style name="ButtonCompat" parent="ButtonCompatBase">
35 <item name="android:background">@drawable/button_compat_shape</item> 35 <item name="android:background">@drawable/button_compat_shape</item>
36 <item name="android:textStyle">bold</item> 36 <item name="android:textStyle">bold</item>
37 </style> 37 </style>
38 <style name="ButtonCompatBorderless" parent="ButtonCompat"> 38 <style name="ButtonCompatBorderless" parent="ButtonCompat">
39 <item name="android:background">?android:attr/selectableItemBackground</ item> 39 <item name="android:background">?android:attr/selectableItemBackground</ item>
40 </style> 40 </style>
41
42 <style name="RobotoMediumStyle">
43 <item name="android:fontFamily">sans-serif</item>
44 <item name="android:textStyle">bold</item>
45 </style>
41 </resources> 46 </resources>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698