<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2017 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<!-- Layout used by ClearBrowsingDataTabsFragment -->
<RelativeLayout
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:orientation="vertical">
<com.google.android.material.tabs.TabLayout
android:id="@+id/clear_browsing_data_tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabPaddingStart="5dp"
app:tabPaddingEnd="5dp"
style="@style/TabLayoutStyle" />
<androidx.viewpager2.widget.ViewPager2
android:id="@+id/clear_browsing_data_viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/clear_browsing_data_tabs"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
<ImageView
style="@style/TabBarShadow"
android:layout_below="@id/clear_browsing_data_tabs"
android:importantForAccessibility="no"/>
</RelativeLayout>