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

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

Issue 2931443003: Add support for Android spellcheck menu in Chrome/WebViews (Closed)
Patch Set: Simplify Mojo binding based on rockot@'s advice 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 <!-- Copyright 2013 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2013 The Chromium Authors. All rights reserved.
3 3
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 <resources> 8 <resources>
9 <style name="SelectPopupDialog"> 9 <style name="SelectPopupDialog">
10 <item name="select_dialog_singlechoice">@android:layout/select_dialog_si nglechoice</item> 10 <item name="select_dialog_singlechoice">@android:layout/select_dialog_si nglechoice</item>
11 <item name="select_dialog_multichoice">@android:layout/select_dialog_mul tichoice</item> 11 <item name="select_dialog_multichoice">@android:layout/select_dialog_mul tichoice</item>
12 </style> 12 </style>
13 <style name="SelectActionMenuShare"> 13 <style name="SelectActionMenuShare">
14 <item name="android:icon">@drawable/ic_menu_share_holo_light</item> 14 <item name="android:icon">@drawable/ic_menu_share_holo_light</item>
15 </style> 15 </style>
16 <style name="SelectActionMenuWebSearch"> 16 <style name="SelectActionMenuWebSearch">
17 <item name="android:icon">@drawable/ic_search</item> 17 <item name="android:icon">@drawable/ic_search</item>
18 </style> 18 </style>
19 <style name="TextSuggestionButton" parent="RobotoMediumStyle">
20 <item name="android:drawablePadding">8dp</item>
21 <!-- v21 uses sans-serif-medium -->
22 <item name="android:gravity">start|center_vertical</item>
23 <item name="android:layout_gravity">start|center_vertical</item>
24 <item name="android:layout_height">48dp</item>
25 <item name="android:layout_width">match_parent</item>
26 <item name="android:paddingBottom">8dp</item>
27 <item name="android:paddingEnd">16dp</item>
28 <item name="android:paddingStart">16dp</item>
29 <item name="android:paddingTop">8dp</item>
30 <item name="android:singleLine">true</item>
31 <!-- v21 uses android:attr/colorAccent -->
32 <item name="android:textColor">@color/google_blue_500</item>
33 <item name="android:textAllCaps">true</item>
34 <item name="android:textSize">14sp</item>
35 </style>
19 </resources> 36 </resources>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698