| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 <!-- These menu items are common to tablet and phone. --> | 7 <!-- These menu items are common to tablet and phone. --> |
| 8 <group android:id="@+id/PAGE_MENU" | 8 <group android:id="@+id/PAGE_MENU" |
| 9 android:visible="false"> | 9 android:visible="false"> |
| 10 <item android:id="@+id/icon_row_menu_id" | 10 <item android:id="@+id/icon_row_menu_id" |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 android:visible="false"> | 82 android:visible="false"> |
| 83 <item android:id="@id/new_tab_menu_id" | 83 <item android:id="@id/new_tab_menu_id" |
| 84 android:title="@string/menu_new_tab" /> | 84 android:title="@string/menu_new_tab" /> |
| 85 <item android:id="@id/new_incognito_tab_menu_id" | 85 <item android:id="@id/new_incognito_tab_menu_id" |
| 86 android:title="@string/menu_new_incognito_tab" /> | 86 android:title="@string/menu_new_incognito_tab" /> |
| 87 <item android:id="@id/preferences_id" | 87 <item android:id="@id/preferences_id" |
| 88 android:title="@string/menu_preferences" /> | 88 android:title="@string/menu_preferences" /> |
| 89 </group> | 89 </group> |
| 90 </menu> | 90 </menu> |
| 91 | 91 |
| OLD | NEW |