| 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 <item android:id="@+id/icon_row_menu_id" | 7 <item android:id="@+id/icon_row_menu_id" |
| 8 android:title="@null" | 8 android:title="@null" |
| 9 android:orderInCategory="0" > | 9 android:orderInCategory="0" > |
| 10 <menu> | 10 <menu> |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 android:title="@null" /> | 32 android:title="@null" /> |
| 33 </menu> | 33 </menu> |
| 34 </item> | 34 </item> |
| 35 <item android:id="@+id/find_in_page_id" | 35 <item android:id="@+id/find_in_page_id" |
| 36 android:title="@string/menu_find_in_page" | 36 android:title="@string/menu_find_in_page" |
| 37 android:orderInCategory="2" /> | 37 android:orderInCategory="2" /> |
| 38 <!-- Title is intentionally left blank in xml and will be set in java. -
-> | 38 <!-- Title is intentionally left blank in xml and will be set in java. -
-> |
| 39 <item android:id="@+id/open_in_browser_id" | 39 <item android:id="@+id/open_in_browser_id" |
| 40 android:title="" | 40 android:title="" |
| 41 android:orderInCategory="2" /> | 41 android:orderInCategory="2" /> |
| 42 <item android:id="@+id/read_it_later_id" |
| 43 android:title="@string/read_it_later" |
| 44 android:orderInCategory="2" /> |
| 42 </menu> | 45 </menu> |
| OLD | NEW |