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

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: 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
« no previous file with comments | « no previous file | content/public/android/java/src/org/chromium/content/browser/ContentViewCore.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">
(...skipping 25 matching lines...) Expand all
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 <item 45 <item
46 android:id="@+id/select_action_menu_translate"
hush (inactive) 2015/09/16 22:06:47 the reason why I put translate before search is to
47 android:title="@string/actionbar_translate"
48 android:showAsAction="always|withText"
49 />
50 <item
46 android:id="@+id/select_action_menu_web_search" 51 android:id="@+id/select_action_menu_web_search"
47 android:title="@string/actionbar_web_search" 52 android:title="@string/actionbar_web_search"
48 android:showAsAction="always|withText" 53 android:showAsAction="always|withText"
49 style="@style/SelectActionMenuWebSearch" 54 style="@style/SelectActionMenuWebSearch"
50 /> 55 />
51 </menu> 56 </menu>
OLDNEW
« no previous file with comments | « no previous file | content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698