chromium/components/browser_ui/site_settings/android/java/res/layout/storage_preferences_view.xml

<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2019 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->

<merge xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">
    <TextView
        android:id="@+id/empty_storage"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:padding="8dp"
        android:text="@string/no_saved_website_settings"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:visibility="gone" />

    <View
        android:layout_width="match_parent"
        android:layout_height="@dimen/toolbar_shadow_height"
        android:layout_gravity="bottom"
        android:background="@drawable/modern_toolbar_shadow"
        android:scaleY="-1" />

    <org.chromium.ui.widget.ButtonCompat
        android:id="@+id/clear_button"
        style="@style/TextButton"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingBottom="16dp"
        android:paddingTop="16dp"
        android:text="@string/storage_delete_button_title"
        app:verticalInset="0dp" />
</merge>