Chromium Code Reviews| 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..a98697cb7c97d7416df1117c61544be3e62005b3 |
| --- /dev/null |
| +++ b/chrome/android/java/res/layout/clear_browsing_data_tabs.xml |
| @@ -0,0 +1,30 @@ |
| +<?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_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.
|
| + 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_browser_data_viewpager" |
|
msramek
2017/01/18 17:06:38
Also here.
dullweber
2017/01/19 13:16:14
Done.
|
| + android:layout_width="match_parent" |
| + android:layout_height="match_parent" |
| + app:layout_behavior="@string/appbar_scrolling_view_behavior" /> |
| +</android.support.design.widget.CoordinatorLayout> |