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

Side by Side Diff: content/public/android/java/res/menu/select_action_menu.xml

Issue 2903733002: [SmartText selection] Restore separator between assist and other items (Closed)
Patch Set: Created 3 years, 7 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
« no previous file with comments | « no previous file | content/public/android/java/src/org/chromium/content/browser/SelectionPopupController.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <!--suppress AlwaysShowAction --> 9 <!--suppress AlwaysShowAction -->
10 <menu xmlns:android="http://schemas.android.com/apk/res/android"> 10 <menu xmlns:android="http://schemas.android.com/apk/res/android">
11 <!-- The orderInCategory starts with 2 to give a room for 11 <!-- Remove the ordering when Android can reorder the assist menu item
12 assist menu item. Remove the ordering when Android 12 itself. -->
13 can reorder the assist menu item itself. 13 <group
14 --> 14 android:id="@+id/select_action_menu_assist_items"
15 android:orderInCategory="1">
16 </group>
15 <group 17 <group
16 android:id="@+id/select_action_menu_default_items"> 18 android:id="@+id/select_action_menu_default_items">
17 <item 19 <item
18 android:id="@+id/select_action_menu_cut" 20 android:id="@+id/select_action_menu_cut"
19 android:icon="?android:attr/actionModeCutDrawable" 21 android:icon="?android:attr/actionModeCutDrawable"
20 android:title="@android:string/cut" 22 android:title="@android:string/cut"
21 android:showAsAction="always|withText" 23 android:showAsAction="always|withText"
22 android:alphabeticShortcut="x" 24 android:alphabeticShortcut="x"
23 android:orderInCategory="2" 25 android:orderInCategory="2"
24 /> 26 />
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 android:showAsAction="always|withText" 68 android:showAsAction="always|withText"
67 style="@style/SelectActionMenuWebSearch" 69 style="@style/SelectActionMenuWebSearch"
68 android:orderInCategory="8" 70 android:orderInCategory="8"
69 /> 71 />
70 </group> 72 </group>
71 <group 73 <group
72 android:id="@+id/select_action_menu_text_processing_menus" 74 android:id="@+id/select_action_menu_text_processing_menus"
73 android:orderInCategory="9"> 75 android:orderInCategory="9">
74 </group> 76 </group>
75 </menu> 77 </menu>
OLDNEW
« no previous file with comments | « no previous file | content/public/android/java/src/org/chromium/content/browser/SelectionPopupController.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698