Chromium Code Reviews| 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 | |
|
Bernhard Bauer
2014/11/04 12:22:10
This line should be indented one more space.
divya.bansal
2014/11/05 09:04:22
Done.
| |
| 20 android:id="@+id/add_button" | |
| 21 android:layout_width="38dp" | |
| 22 android:layout_height="38dp" | |
| 23 android:src="@android:drawable/ic_menu_add" | |
| 24 android:visibility="gone" | |
| 25 android:scaleType="center"/> | |
| 19 <org.chromium.chrome.browser.widget.TintedImageButton | 26 <org.chromium.chrome.browser.widget.TintedImageButton |
| 20 android:id="@+id/stop_reload_button" | 27 android:id="@+id/stop_reload_button" |
| 21 android:layout_width="38dp" | 28 android:layout_width="38dp" |
| 22 android:layout_height="38dp" | 29 android:layout_height="38dp" |
| 23 android:src="@drawable/btn_toolbar_stop_loading_white_normal" | 30 android:src="@drawable/btn_toolbar_stop_loading_white_normal" |
| 24 android:background="?android:attr/selectableItemBackground" | 31 android:background="?android:attr/selectableItemBackground" |
| 25 android:scaleType="center"/> | 32 android:scaleType="center"/> |
| 26 <EditText android:id="@+id/url" | 33 <EditText android:id="@+id/url" |
| 27 android:layout_width="0dp" | 34 android:layout_width="0dp" |
| 28 android:layout_height="wrap_content" | 35 android:layout_height="wrap_content" |
| (...skipping 23 matching lines...) Expand all Loading... | |
| 52 android:background="?android:attr/selectableItemBackground" | 59 android:background="?android:attr/selectableItemBackground" |
| 53 android:scaleType="center"/> | 60 android:scaleType="center"/> |
| 54 </org.chromium.chrome.shell.ChromeShellToolbar> | 61 </org.chromium.chrome.shell.ChromeShellToolbar> |
| 55 <FrameLayout android:id="@+id/content_container" | 62 <FrameLayout android:id="@+id/content_container" |
| 56 android:layout_width="match_parent" | 63 android:layout_width="match_parent" |
| 57 android:layout_height="0dp" | 64 android:layout_height="0dp" |
| 58 android:layout_weight="1"> | 65 android:layout_weight="1"> |
| 59 </FrameLayout> | 66 </FrameLayout> |
| 60 | 67 |
| 61 </org.chromium.chrome.shell.TabManager> | 68 </org.chromium.chrome.shell.TabManager> |
| OLD | NEW |