| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 | 2 |
| 3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. | 3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. |
| 4 | 4 |
| 5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
| 6 found in the LICENSE file. | 6 found in the LICENSE file. |
| 7 --> | 7 --> |
| 8 | 8 |
| 9 <org.chromium.chrome.shell.TabManager android:id="@+id/tab_manager" | 9 <org.chromium.chrome.shell.TabManager android:id="@+id/tab_manager" |
| 10 xmlns:android="http://schemas.android.com/apk/res/android" | 10 xmlns:android="http://schemas.android.com/apk/res/android" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 android:layout_width="38dp" | 41 android:layout_width="38dp" |
| 42 android:layout_height="38dp" | 42 android:layout_height="38dp" |
| 43 android:src="@drawable/btn_tabswitcher_white_normal" | 43 android:src="@drawable/btn_tabswitcher_white_normal" |
| 44 android:background="?android:attr/selectableItemBackground" | 44 android:background="?android:attr/selectableItemBackground" |
| 45 android:scaleType="center" | 45 android:scaleType="center" |
| 46 android:contentDescription="@null"/> | 46 android:contentDescription="@null"/> |
| 47 <org.chromium.chrome.browser.widget.TintedImageButton | 47 <org.chromium.chrome.browser.widget.TintedImageButton |
| 48 android:id="@+id/menu_button" | 48 android:id="@+id/menu_button" |
| 49 android:layout_width="38dp" | 49 android:layout_width="38dp" |
| 50 android:layout_height="38dp" | 50 android:layout_height="38dp" |
| 51 android:src="@drawable/btn_menu_white_normal" | 51 android:src="@drawable/btn_menu" |
| 52 android:background="?android:attr/selectableItemBackground" | 52 android:background="?android:attr/selectableItemBackground" |
| 53 android:scaleType="center"/> | 53 android:scaleType="center"/> |
| 54 </org.chromium.chrome.shell.ChromeShellToolbar> | 54 </org.chromium.chrome.shell.ChromeShellToolbar> |
| 55 <FrameLayout android:id="@+id/content_container" | 55 <FrameLayout android:id="@+id/content_container" |
| 56 android:layout_width="match_parent" | 56 android:layout_width="match_parent" |
| 57 android:layout_height="0dp" | 57 android:layout_height="0dp" |
| 58 android:layout_weight="1"> | 58 android:layout_weight="1"> |
| 59 </FrameLayout> | 59 </FrameLayout> |
| 60 | 60 |
| 61 </org.chromium.chrome.shell.TabManager> | 61 </org.chromium.chrome.shell.TabManager> |
| OLD | NEW |