Chromium Code Reviews| 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"> |
| (...skipping 26 matching lines...) Expand all Loading... | |
| 37 android:orderInCategory="4" | 37 android:orderInCategory="4" |
| 38 /> | 38 /> |
| 39 <item | 39 <item |
| 40 android:id="@+id/select_action_menu_share" | 40 android:id="@+id/select_action_menu_share" |
| 41 android:title="@string/actionbar_share" | 41 android:title="@string/actionbar_share" |
| 42 android:showAsAction="always|withText" | 42 android:showAsAction="always|withText" |
| 43 style="@style/SelectActionMenuShare" | 43 style="@style/SelectActionMenuShare" |
| 44 android:orderInCategory="5" | 44 android:orderInCategory="5" |
| 45 /> | 45 /> |
| 46 <item | 46 <item |
| 47 android:id="@+id/select_action_menu_paste_as_plain_text" | |
|
amaralp
2017/04/13 20:40:17
According to https://buganizer.corp.google.com/iss
Shimi Zhang
2017/04/15 01:17:15
Done.
| |
| 48 android:title="@android:string/paste" | |
| 49 android:showAsAction="always|withText" | |
| 50 android:orderInCategory="6" | |
| 51 /> | |
| 52 <item | |
| 47 android:id="@+id/select_action_menu_select_all" | 53 android:id="@+id/select_action_menu_select_all" |
| 48 android:icon="?android:attr/actionModeSelectAllDrawable" | 54 android:icon="?android:attr/actionModeSelectAllDrawable" |
| 49 android:title="@android:string/selectAll" | 55 android:title="@android:string/selectAll" |
| 50 android:showAsAction="always|withText" | 56 android:showAsAction="always|withText" |
| 51 android:alphabeticShortcut="a" | 57 android:alphabeticShortcut="a" |
| 52 android:orderInCategory="6" | 58 android:orderInCategory="7" |
| 53 /> | 59 /> |
| 54 <item | 60 <item |
| 55 android:id="@+id/select_action_menu_web_search" | 61 android:id="@+id/select_action_menu_web_search" |
| 56 android:title="@string/actionbar_web_search" | 62 android:title="@string/actionbar_web_search" |
| 57 android:showAsAction="always|withText" | 63 android:showAsAction="always|withText" |
| 58 style="@style/SelectActionMenuWebSearch" | 64 style="@style/SelectActionMenuWebSearch" |
| 59 android:orderInCategory="7" | 65 android:orderInCategory="8" |
| 60 /> | 66 /> |
| 61 <group | 67 <group |
| 62 android:id="@+id/select_action_menu_text_processing_menus" | 68 android:id="@+id/select_action_menu_text_processing_menus" |
| 63 android:orderInCategory="8"> | 69 android:orderInCategory="9"> |
| 64 </group> | 70 </group> |
| 65 </menu> | 71 </menu> |
| OLD | NEW |