| OLD | NEW |
| (Empty) |
| 1 <?xml version="1.0" encoding="utf-8"?> | |
| 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | |
| 3 Use of this source code is governed by a BSD-style license that can be | |
| 4 found in the LICENSE file. --> | |
| 5 | |
| 6 <menu xmlns:android="http://schemas.android.com/apk/res/android" | |
| 7 xmlns:chrome="http://schemas.android.com/apk/res-auto" > | |
| 8 | |
| 9 <group android:id="@+id/normal_menu_group" > | |
| 10 <item | |
| 11 android:id="@+id/edit_menu_id" | |
| 12 android:icon="@drawable/eb_edit_normal" | |
| 13 android:title="@string/enhanced_bookmark_action_bar_edit_folder" | |
| 14 android:visible="false" | |
| 15 chrome:showAsAction="ifRoom"/> | |
| 16 <item | |
| 17 android:id="@+id/search_menu_id" | |
| 18 android:icon="@drawable/ic_search" | |
| 19 android:title="@null" | |
| 20 android:visible="false" | |
| 21 chrome:showAsAction="ifRoom"/> | |
| 22 <item | |
| 23 android:id="@+id/close_menu_id" | |
| 24 android:icon="@drawable/btn_close" | |
| 25 android:title="@string/enhanced_bookmark_action_bar_close" | |
| 26 chrome:showAsAction="ifRoom"/> | |
| 27 </group> | |
| 28 <group | |
| 29 android:id="@+id/selection_mode_menu_group" | |
| 30 android:visible="false" > | |
| 31 <item | |
| 32 android:id="@+id/selection_mode_edit_menu_id" | |
| 33 android:icon="@drawable/eb_edit_active" | |
| 34 android:title="@null" | |
| 35 chrome:showAsAction="ifRoom"/> | |
| 36 <item | |
| 37 android:id="@+id/selection_mode_move_menu_id" | |
| 38 android:icon="@drawable/eb_move_active" | |
| 39 android:title="@null" | |
| 40 chrome:showAsAction="ifRoom"/> | |
| 41 <item | |
| 42 android:id="@+id/selection_mode_delete_menu_id" | |
| 43 android:icon="@drawable/eb_delete_white" | |
| 44 android:title="@null" | |
| 45 chrome:showAsAction="ifRoom"/> | |
| 46 </group> | |
| 47 | |
| 48 </menu> | |
| OLD | NEW |