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

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: rebase 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
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/ChromeApplication.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
7 xmlns:android="http://schemas.android.com/apk/res/android"
8 xmlns:app="http://schemas.android.com/apk/res-auto"
9 android:layout_width="match_parent"
10 android:layout_height="match_parent">
11
12 <android.support.design.widget.AppBarLayout
13 android:layout_width="match_parent"
14 android:layout_height="wrap_content"
15 android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
16
17 <android.support.design.widget.TabLayout
18 android:id="@+id/clear_browsing_data_tabs"
19 android:layout_width="match_parent"
20 android:layout_height="wrap_content"
21 app:tabMode="fixed"
22 app:tabGravity="fill" />
23
24 </android.support.design.widget.AppBarLayout>
25
26 <android.support.v4.view.ViewPager
27 android:id="@+id/clear_browsing_data_viewpager"
28 android:layout_width="match_parent"
29 android:layout_height="match_parent"
30 app:layout_behavior="@string/appbar_scrolling_view_behavior" />
31 </android.support.design.widget.CoordinatorLayout>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/ChromeApplication.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698