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

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

Issue 2644573003: Initial version of the split CBD dialog (Closed)
Patch Set: Created 3 years, 11 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
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2017 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. -->
5
6 <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.a ndroid.com/apk/res/android"
7 xmlns:app="http://schemas.android.com/apk/res-auto"
8 android:layout_width="match_parent"
9 android:layout_height="match_parent">
10
11 <android.support.design.widget.AppBarLayout
12 android:layout_width="match_parent"
13 android:layout_height="wrap_content"
14 android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
15
16 <android.support.design.widget.TabLayout
17 android:id="@+id/clear_browser_data_tabs"
msramek 2017/01/18 17:06:38 Let's use *browsing* instead of *browser* data to
dullweber 2017/01/19 13:16:14 Done.
18 android:layout_width="match_parent"
19 android:layout_height="wrap_content"
20 app:tabMode="fixed"
21 app:tabGravity="fill" />
22
23 </android.support.design.widget.AppBarLayout>
24
25 <android.support.v4.view.ViewPager
26 android:id="@+id/clear_browser_data_viewpager"
msramek 2017/01/18 17:06:38 Also here.
dullweber 2017/01/19 13:16:14 Done.
27 android:layout_width="match_parent"
28 android:layout_height="match_parent"
29 app:layout_behavior="@string/appbar_scrolling_view_behavior" />
30 </android.support.design.widget.CoordinatorLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698