| 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" |
| 11 android:layout_width="match_parent" | 11 android:layout_width="match_parent" |
| 12 android:layout_height="match_parent" | 12 android:layout_height="match_parent" |
| 13 android:orientation="vertical"> | 13 android:orientation="vertical"> |
| 14 <org.chromium.chrome.shell.ChromeShellToolbar android:id="@+id/toolbar" | 14 <org.chromium.chrome.shell.ChromeShellToolbar android:id="@+id/toolbar" |
| 15 android:layout_width="match_parent" | 15 android:layout_width="match_parent" |
| 16 android:layout_height="wrap_content" | 16 android:layout_height="wrap_content" |
| 17 android:orientation="horizontal" | 17 android:orientation="horizontal" |
| 18 android:background="@drawable/progress"> | 18 android:background="@drawable/progress"> |
| 19 <org.chromium.chrome.browser.widget.TintedImageButton | 19 <org.chromium.chrome.browser.widget.TintedImageButton |
| 20 android:id="@+id/add_button" | 20 android:id="@+id/add_button" |
| 21 android:layout_width="38dp" | 21 android:layout_width="38dp" |
| 22 android:layout_height="38dp" | 22 android:layout_height="38dp" |
| 23 android:src="@android:drawable/ic_menu_add" | 23 android:src="@android:drawable/ic_menu_add" |
| 24 android:visibility="gone" | 24 android:visibility="gone" |
| 25 android:scaleType="center"/> | 25 android:scaleType="center"/> |
| 26 <org.chromium.chrome.browser.widget.TintedImageButton | 26 <org.chromium.chrome.browser.widget.TintedImageButton |
| 27 android:id="@+id/stop_reload_button" | 27 android:id="@+id/stop_reload_button" |
| 28 android:layout_width="38dp" | 28 android:layout_width="38dp" |
| 29 android:layout_height="38dp" | 29 android:layout_height="38dp" |
| 30 android:src="@drawable/btn_toolbar_stop" | 30 android:src="@drawable/btn_close" |
| 31 android:background="?attr/selectableItemBackground" | 31 android:background="?attr/selectableItemBackground" |
| 32 android:scaleType="center"/> | 32 android:scaleType="center"/> |
| 33 <EditText android:id="@+id/url" | 33 <EditText android:id="@+id/url" |
| 34 android:layout_width="0dp" | 34 android:layout_width="0dp" |
| 35 android:layout_height="wrap_content" | 35 android:layout_height="wrap_content" |
| 36 android:layout_weight="1" | 36 android:layout_weight="1" |
| 37 android:gravity="bottom" | 37 android:gravity="bottom" |
| 38 android:textSize="18sp" | 38 android:textSize="18sp" |
| 39 android:autoText="true" | 39 android:autoText="true" |
| 40 android:capitalize="sentences" | 40 android:capitalize="sentences" |
| (...skipping 18 matching lines...) Expand all Loading... |
| 59 android:background="?attr/selectableItemBackground" | 59 android:background="?attr/selectableItemBackground" |
| 60 android:scaleType="center"/> | 60 android:scaleType="center"/> |
| 61 </org.chromium.chrome.shell.ChromeShellToolbar> | 61 </org.chromium.chrome.shell.ChromeShellToolbar> |
| 62 <FrameLayout android:id="@+id/content_container" | 62 <FrameLayout android:id="@+id/content_container" |
| 63 android:layout_width="match_parent" | 63 android:layout_width="match_parent" |
| 64 android:layout_height="0dp" | 64 android:layout_height="0dp" |
| 65 android:layout_weight="1"> | 65 android:layout_weight="1"> |
| 66 </FrameLayout> | 66 </FrameLayout> |
| 67 | 67 |
| 68 </org.chromium.chrome.shell.TabManager> | 68 </org.chromium.chrome.shell.TabManager> |
| OLD | NEW |