| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2016 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2016 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. --> | 4 found in the LICENSE file. --> |
| 5 | 5 |
| 6 <!-- PaymentRequestUI dialog | 6 <!-- PaymentRequestUI dialog |
| 7 Sits at the bottom of the screen like a Bottom Sheet. | 7 Sits at the bottom of the screen like a Bottom Sheet. |
| 8 --> | 8 --> |
| 9 <org.chromium.chrome.browser.widget.BoundedLinearLayout | 9 <org.chromium.chrome.browser.widget.BoundedLinearLayout |
| 10 xmlns:android="http://schemas.android.com/apk/res/android" | 10 xmlns:android="http://schemas.android.com/apk/res/android" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 android:visibility="gone" > | 25 android:visibility="gone" > |
| 26 | 26 |
| 27 <LinearLayout | 27 <LinearLayout |
| 28 android:id="@+id/payment_container_layout" | 28 android:id="@+id/payment_container_layout" |
| 29 android:layout_width="match_parent" | 29 android:layout_width="match_parent" |
| 30 android:layout_height="wrap_content" | 30 android:layout_height="wrap_content" |
| 31 android:orientation="vertical" /> | 31 android:orientation="vertical" /> |
| 32 | 32 |
| 33 </org.chromium.chrome.browser.payments.ui.FadingEdgeScrollView> | 33 </org.chromium.chrome.browser.payments.ui.FadingEdgeScrollView> |
| 34 | 34 |
| 35 <org.chromium.chrome.browser.widget.DualControlLayout | 35 <include layout="@layout/payment_request_bottom_bar" /> |
| 36 android:id="@+id/button_bar" | |
| 37 android:layout_height="wrap_content" | |
| 38 android:layout_width="match_parent" | |
| 39 android:padding="@dimen/payments_section_large_spacing" | |
| 40 android:background="@android:color/white" | |
| 41 android:visibility="gone" /> | |
| 42 | 36 |
| 43 </org.chromium.chrome.browser.widget.BoundedLinearLayout> | 37 </org.chromium.chrome.browser.widget.BoundedLinearLayout> |
| OLD | NEW |