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

Side by Side Diff: chrome/android/java/res/layout/bottom_control_container.xml

Issue 2753773006: [Home] Move bottom sheet classes to widget/bottomsheet (Closed)
Patch Set: Fix bottom_sheet_bottom_nav.xml Created 3 years, 9 months 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 <!-- Copyright 2016 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2016 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 5
6 <org.chromium.chrome.browser.widget.BottomSheet 6 <org.chromium.chrome.browser.widget.bottomsheet.BottomSheet
7 xmlns:android="http://schemas.android.com/apk/res/android" 7 xmlns:android="http://schemas.android.com/apk/res/android"
8 android:id="@+id/bottom_sheet" 8 android:id="@+id/bottom_sheet"
9 android:layout_width="match_parent" 9 android:layout_width="match_parent"
10 android:layout_height="wrap_content" > 10 android:layout_height="wrap_content" >
11 11
12 <org.chromium.chrome.browser.toolbar.ToolbarControlContainer 12 <org.chromium.chrome.browser.toolbar.ToolbarControlContainer
13 android:id="@+id/control_container" 13 android:id="@+id/control_container"
14 android:layout_width="match_parent" 14 android:layout_width="match_parent"
15 android:layout_height="wrap_content" 15 android:layout_height="wrap_content"
16 android:minHeight="@dimen/bottom_control_container_height" > 16 android:minHeight="@dimen/bottom_control_container_height" >
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 android:layout="@layout/omnibox_results_container" /> 75 android:layout="@layout/omnibox_results_container" />
76 76
77 <ImageView 77 <ImageView
78 android:id="@+id/toolbar_shadow" 78 android:id="@+id/toolbar_shadow"
79 android:src="@drawable/toolbar_shadow" 79 android:src="@drawable/toolbar_shadow"
80 android:layout_width="match_parent" 80 android:layout_width="match_parent"
81 android:layout_height="wrap_content" 81 android:layout_height="wrap_content"
82 android:scaleType="fitXY" 82 android:scaleType="fitXY"
83 android:contentDescription="@null" /> 83 android:contentDescription="@null" />
84 84
85 </org.chromium.chrome.browser.widget.BottomSheet> 85 </org.chromium.chrome.browser.widget.bottomsheet.BottomSheet>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698