| OLD | NEW |
| 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/search_menu_id" |
| 12 android:icon="@drawable/ic_search" |
| 13 android:title="@string/search" |
| 14 android:visible="false" |
| 15 chrome:showAsAction="ifRoom" /> |
| 16 <item |
| 11 android:id="@+id/close_menu_id" | 17 android:id="@+id/close_menu_id" |
| 12 android:icon="@drawable/btn_close" | 18 android:icon="@drawable/btn_close" |
| 13 android:title="@string/close" | 19 android:title="@string/close" |
| 14 chrome:showAsAction="ifRoom" /> | 20 chrome:showAsAction="ifRoom" /> |
| 15 </group> | 21 </group> |
| 16 <group | 22 <group |
| 17 android:id="@+id/selection_mode_menu_group" | 23 android:id="@+id/selection_mode_menu_group" |
| 18 android:visible="false" > | 24 android:visible="false" > |
| 19 <item | 25 <item |
| 20 android:id="@+id/selection_mode_share_menu_id" | 26 android:id="@+id/selection_mode_share_menu_id" |
| 21 android:icon="@drawable/ic_share_white_24dp" | 27 android:icon="@drawable/ic_share_white_24dp" |
| 22 android:title="@string/share" | 28 android:title="@string/share" |
| 23 chrome:showAsAction="ifRoom" /> | 29 chrome:showAsAction="ifRoom" /> |
| 24 <item | 30 <item |
| 25 android:id="@+id/selection_mode_delete_menu_id" | 31 android:id="@+id/selection_mode_delete_menu_id" |
| 26 android:icon="@drawable/ic_delete_white_24dp" | 32 android:icon="@drawable/ic_delete_white_24dp" |
| 27 android:title="@string/delete" | 33 android:title="@string/delete" |
| 28 chrome:showAsAction="ifRoom" /> | 34 chrome:showAsAction="ifRoom" /> |
| 29 </group> | 35 </group> |
| 30 </menu> | 36 </menu> |
| OLD | NEW |