| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 android:scaleType="center" | 53 android:scaleType="center" |
| 54 android:contentDescription="@null"/> | 54 android:contentDescription="@null"/> |
| 55 <org.chromium.chrome.browser.widget.TintedImageButton | 55 <org.chromium.chrome.browser.widget.TintedImageButton |
| 56 android:id="@+id/menu_button" | 56 android:id="@+id/menu_button" |
| 57 android:layout_width="38dp" | 57 android:layout_width="38dp" |
| 58 android:layout_height="38dp" | 58 android:layout_height="38dp" |
| 59 android:src="@drawable/btn_menu" | 59 android:src="@drawable/btn_menu" |
| 60 android:background="?attr/selectableItemBackground" | 60 android:background="?attr/selectableItemBackground" |
| 61 android:scaleType="center"/> | 61 android:scaleType="center"/> |
| 62 </LinearLayout> | 62 </LinearLayout> |
| 63 <org.chromium.chrome.browser.widget.ToolbarProgressBar | 63 <org.chromium.chrome.browser.widget.ClipDrawableProgressBar |
| 64 android:id="@+id/progress" | 64 android:id="@+id/progress" |
| 65 style="@android:style/Widget.Holo.Light.ProgressBar.Horizontal" | |
| 66 android:progressDrawable="@drawable/progress_bar" | |
| 67 android:layout_width="match_parent" | 65 android:layout_width="match_parent" |
| 68 android:layout_height="2dp" | 66 android:layout_height="2dp" |
| 69 android:progress="0" /> | 67 android:src="@drawable/clip_drawable_progress_bar" /> |
| 70 </org.chromium.chrome.shell.ChromeShellToolbar> | 68 </org.chromium.chrome.shell.ChromeShellToolbar> |
| 71 <FrameLayout android:id="@+id/content_container" | 69 <FrameLayout android:id="@+id/content_container" |
| 72 android:layout_width="match_parent" | 70 android:layout_width="match_parent" |
| 73 android:layout_height="0dp" | 71 android:layout_height="0dp" |
| 74 android:layout_weight="1"> | 72 android:layout_weight="1"> |
| 75 </FrameLayout> | 73 </FrameLayout> |
| 76 | 74 |
| 77 </org.chromium.chrome.shell.TabManager> | 75 </org.chromium.chrome.shell.TabManager> |
| OLD | NEW |