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

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

Issue 1349563003: Implement Android M text process action in ActionMode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix indents Created 5 years, 3 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 <!--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 24 matching lines...) Expand all
35 android:title="@android:string/paste" 35 android:title="@android:string/paste"
36 android:showAsAction="always|withText" 36 android:showAsAction="always|withText"
37 android:alphabeticShortcut="v" 37 android:alphabeticShortcut="v"
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 /> 44 />
45 <group
46 android:id="@+id/select_action_menu_text_processing_menus">
47 </group>
45 <item 48 <item
46 android:id="@+id/select_action_menu_web_search" 49 android:id="@+id/select_action_menu_web_search"
47 android:title="@string/actionbar_web_search" 50 android:title="@string/actionbar_web_search"
48 android:showAsAction="always|withText" 51 android:showAsAction="always|withText"
49 style="@style/SelectActionMenuWebSearch" 52 style="@style/SelectActionMenuWebSearch"
50 /> 53 />
51 </menu> 54 </menu>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698