| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |