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

Side by Side Diff: chrome/android/java/res/layout/bottom_sheet_bottom_nav.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.BottomSheetContentController 6 <org.chromium.chrome.browser.widget.bottomsheet.BottomSheetContentController
7 xmlns:android="http://schemas.android.com/apk/res/android" 7 xmlns:android="http://schemas.android.com/apk/res/android"
8 xmlns:app="http://schemas.android.com/apk/res-auto" 8 xmlns:app="http://schemas.android.com/apk/res-auto"
9 android:id="@+id/bottom_nav" 9 android:id="@+id/bottom_nav"
10 android:layout_width="match_parent" 10 android:layout_width="match_parent"
11 android:layout_height="@dimen/bottom_nav_height" 11 android:layout_height="@dimen/bottom_nav_height"
12 android:layout_gravity="start|bottom" 12 android:layout_gravity="start|bottom"
13 android:background="@color/appbar_background" 13 android:background="@color/appbar_background"
14 app:menu="@menu/bottom_sheet_nav_menu" 14 app:menu="@menu/bottom_sheet_nav_menu"
15 app:itemIconTint="@color/bottom_nav_tint" 15 app:itemIconTint="@color/bottom_nav_tint"
16 app:itemTextColor="@color/bottom_nav_tint" 16 app:itemTextColor="@color/bottom_nav_tint"
17 android:visibility="gone" /> 17 android:visibility="gone" />
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698