| Index: chrome/android/java/res/layout/clear_browsing_data_tabs.xml
|
| diff --git a/chrome/android/java/res/layout/clear_browsing_data_tabs.xml b/chrome/android/java/res/layout/clear_browsing_data_tabs.xml
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..81ad215794cb5df965899a4577b0b70cd692e04a
|
| --- /dev/null
|
| +++ b/chrome/android/java/res/layout/clear_browsing_data_tabs.xml
|
| @@ -0,0 +1,31 @@
|
| +<?xml version="1.0" encoding="utf-8"?>
|
| +<!-- Copyright 2017 The Chromium Authors. All rights reserved.
|
| + Use of this source code is governed by a BSD-style license that can be
|
| + found in the LICENSE file. -->
|
| +
|
| +<android.support.design.widget.CoordinatorLayout
|
| + xmlns:android="http://schemas.android.com/apk/res/android"
|
| + xmlns:app="http://schemas.android.com/apk/res-auto"
|
| + android:layout_width="match_parent"
|
| + android:layout_height="match_parent">
|
| +
|
| + <android.support.design.widget.AppBarLayout
|
| + android:layout_width="match_parent"
|
| + android:layout_height="wrap_content"
|
| + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
|
| +
|
| + <android.support.design.widget.TabLayout
|
| + android:id="@+id/clear_browsing_data_tabs"
|
| + android:layout_width="match_parent"
|
| + android:layout_height="wrap_content"
|
| + app:tabMode="fixed"
|
| + app:tabGravity="fill" />
|
| +
|
| + </android.support.design.widget.AppBarLayout>
|
| +
|
| + <android.support.v4.view.ViewPager
|
| + android:id="@+id/clear_browsing_data_viewpager"
|
| + android:layout_width="match_parent"
|
| + android:layout_height="match_parent"
|
| + app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
| +</android.support.design.widget.CoordinatorLayout>
|
|
|