| 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/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/share" | 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/remove" | 27 android:title="@string/delete" |
| 28 chrome:showAsAction="ifRoom" /> | 28 chrome:showAsAction="ifRoom" /> |
| 29 </group> | 29 </group> |
| 30 </menu> | 30 </menu> |
| OLD | NEW |