| 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 <!-- The toolbar containing the URL bar, back button, and NTP button. | 6 <!-- The toolbar containing the URL bar, back button, and NTP button. |
| 7 --> | 7 --> |
| 8 | 8 |
| 9 <org.chromium.chrome.browser.toolbar.ToolbarTablet | 9 <org.chromium.chrome.browser.toolbar.ToolbarTablet |
| 10 xmlns:android="http://schemas.android.com/apk/res/android" | 10 xmlns:android="http://schemas.android.com/apk/res/android" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 <org.chromium.chrome.browser.widget.TintedImageButton | 36 <org.chromium.chrome.browser.widget.TintedImageButton |
| 37 android:id="@+id/forward_button" | 37 android:id="@+id/forward_button" |
| 38 style="@style/ToolbarButton" | 38 style="@style/ToolbarButton" |
| 39 android:src="@drawable/btn_forward" | 39 android:src="@drawable/btn_forward" |
| 40 android:contentDescription="@string/accessibility_toolbar_btn_forwar
d" /> | 40 android:contentDescription="@string/accessibility_toolbar_btn_forwar
d" /> |
| 41 | 41 |
| 42 <org.chromium.chrome.browser.widget.TintedImageButton | 42 <org.chromium.chrome.browser.widget.TintedImageButton |
| 43 android:id="@+id/refresh_button" | 43 android:id="@+id/refresh_button" |
| 44 style="@style/ToolbarButton" | 44 style="@style/ToolbarButton" |
| 45 android:src="@drawable/btn_toolbar_reload" | 45 android:src="@drawable/btn_reload_stop" |
| 46 android:contentDescription="@string/accessibility_btn_refresh" /> | 46 android:contentDescription="@string/accessibility_btn_refresh" /> |
| 47 | 47 |
| 48 <org.chromium.chrome.browser.omnibox.LocationBarTablet | 48 <org.chromium.chrome.browser.omnibox.LocationBarTablet |
| 49 android:id="@+id/location_bar" | 49 android:id="@+id/location_bar" |
| 50 android:layout_width="0dp" | 50 android:layout_width="0dp" |
| 51 android:layout_height="match_parent" | 51 android:layout_height="match_parent" |
| 52 android:layout_marginBottom="5dp" | 52 android:layout_marginBottom="5dp" |
| 53 android:layout_marginTop="5dp" | 53 android:layout_marginTop="5dp" |
| 54 android:layout_weight="1" | 54 android:layout_weight="1" |
| 55 android:layout_gravity="top|center" | 55 android:layout_gravity="top|center" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 78 android:id="@+id/menu_badge" | 78 android:id="@+id/menu_badge" |
| 79 style="@style/ToolbarMenuButtonTablet" | 79 style="@style/ToolbarMenuButtonTablet" |
| 80 android:src="@drawable/badge_update_dark" | 80 android:src="@drawable/badge_update_dark" |
| 81 android:contentDescription="@null" | 81 android:contentDescription="@null" |
| 82 android:importantForAccessibility="no" | 82 android:importantForAccessibility="no" |
| 83 android:visibility="invisible" /> | 83 android:visibility="invisible" /> |
| 84 | 84 |
| 85 </FrameLayout> | 85 </FrameLayout> |
| 86 </LinearLayout> | 86 </LinearLayout> |
| 87 </org.chromium.chrome.browser.toolbar.ToolbarTablet> | 87 </org.chromium.chrome.browser.toolbar.ToolbarTablet> |
| OLD | NEW |