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

Side by Side Diff: chrome/android/java/res/menu/download_manager_menu.xml

Issue 2256813004: [Downloads] Fix toolbar buttons' content descriptions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: [Downloads] Fix toolbar buttons' content descriptions Created 4 years, 4 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 | no next file » | 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 <!-- Copyright 2016 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2016 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 5
6 <menu xmlns:android="http://schemas.android.com/apk/res/android" 6 <menu xmlns:android="http://schemas.android.com/apk/res/android"
7 xmlns:chrome="http://schemas.android.com/apk/res-auto" > 7 xmlns:chrome="http://schemas.android.com/apk/res-auto" >
8 8
9 <group android:id="@+id/normal_menu_group" > 9 <group android:id="@+id/normal_menu_group" >
10 <item 10 <item
11 android:id="@+id/close_menu_id" 11 android:id="@+id/close_menu_id"
12 android:icon="@drawable/btn_close" 12 android:icon="@drawable/btn_close"
13 android:title="@string/close" 13 android:title="@string/close"
14 chrome:showAsAction="ifRoom" /> 14 chrome:showAsAction="ifRoom" />
15 </group> 15 </group>
16 <group 16 <group
17 android:id="@+id/selection_mode_menu_group" 17 android:id="@+id/selection_mode_menu_group"
18 android:visible="false" > 18 android:visible="false" >
19 <item 19 <item
20 android:id="@+id/selection_mode_share_menu_id" 20 android:id="@+id/selection_mode_share_menu_id"
21 android:icon="@drawable/ic_share_white_24dp" 21 android:icon="@drawable/ic_share_white_24dp"
22 android:title="@string/remove" 22 android:title="@string/share"
23 chrome:showAsAction="ifRoom" /> 23 chrome:showAsAction="ifRoom" />
24 <item 24 <item
25 android:id="@+id/selection_mode_delete_menu_id" 25 android:id="@+id/selection_mode_delete_menu_id"
26 android:icon="@drawable/ic_delete_white_24dp" 26 android:icon="@drawable/ic_delete_white_24dp"
27 android:title="@string/share" 27 android:title="@string/remove"
28 chrome:showAsAction="ifRoom" /> 28 chrome:showAsAction="ifRoom" />
29 </group> 29 </group>
30 </menu> 30 </menu>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698