<?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">
<ImageView
android:id="@+id/bottom_bar_shadow"
android:layout_width="match_parent"
android:layout_height="@dimen/action_bar_shadow_height"
android:layout_marginTop="@dimen/action_bar_shadow_margin_negative"
android:background="@drawable/modern_toolbar_shadow"
android:scaleY="-1"
android:importantForAccessibility="no"/>
<LinearLayout
android:id="@+id/bottom_bar_button_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="16dp">
<org.chromium.ui.widget.ButtonCompat
android:id="@+id/cancel_button"
style="@style/TextButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/cancel"/>
<View
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1"
android:visibility="invisible"/>
<org.chromium.ui.widget.ButtonCompat
android:id="@+id/confirm_button"
style="@style/FilledButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/confirm"/>
</LinearLayout>
</merge>