Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(43)

Side by Side Diff: chrome/android/shell/res/layout/chrome_shell_activity.xml

Issue 683203006: Adding option for adding new tab in tab manager for chrome shell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding Review Comments Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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"
21 android:layout_width="38dp"
22 android:layout_height="38dp"
23 android:src="@android:drawable/ic_menu_add"
24 android:visibility="gone"
Bernhard Bauer 2014/11/11 11:34:02 One less space.
divya.bansal 2014/11/12 06:45:48 Done.
25 android:scaleType="center"/>
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" 30 android:src="@drawable/btn_toolbar_stop"
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"
29 android:layout_weight="1" 36 android:layout_weight="1"
(...skipping 22 matching lines...) Expand all
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698