| 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 editor dialog. --> | 6 <!-- PaymentRequestUI editor dialog. --> |
| 7 <RelativeLayout | 7 <RelativeLayout |
| 8 xmlns:android="http://schemas.android.com/apk/res/android" | 8 xmlns:android="http://schemas.android.com/apk/res/android" |
| 9 xmlns:chrome="http://schemas.android.com/apk/res-auto" > | 9 xmlns:chrome="http://schemas.android.com/apk/res-auto" |
| 10 android:background="@android:color/white" > |
| 10 | 11 |
| 11 <!-- Toolbar --> | 12 <!-- Toolbar --> |
| 12 <org.chromium.chrome.browser.payments.ui.EditorDialogToolbar | 13 <org.chromium.chrome.browser.payments.ui.EditorDialogToolbar |
| 13 android:id="@+id/action_bar" | 14 android:id="@+id/action_bar" |
| 14 android:layout_width="match_parent" | 15 android:layout_width="match_parent" |
| 15 android:layout_height="?attr/actionBarSize" | 16 android:layout_height="?attr/actionBarSize" |
| 16 android:layout_alignParentTop="true" | 17 android:layout_alignParentTop="true" |
| 17 android:layout_alignParentStart="true" | 18 android:layout_alignParentStart="true" |
| 18 android:layout_alignParentEnd="true" | 19 android:layout_alignParentEnd="true" |
| 19 android:background="@color/dark_action_bar_color" /> | 20 android:background="@color/dark_action_bar_color" /> |
| (...skipping 21 matching lines...) Expand all Loading... |
| 41 <!-- Shadow overlaps the FadingEdgeScrollView. --> | 42 <!-- Shadow overlaps the FadingEdgeScrollView. --> |
| 42 <org.chromium.chrome.browser.widget.FadingShadowView | 43 <org.chromium.chrome.browser.widget.FadingShadowView |
| 43 android:id="@+id/shadow" | 44 android:id="@+id/shadow" |
| 44 android:layout_width="match_parent" | 45 android:layout_width="match_parent" |
| 45 android:layout_height="@dimen/action_bar_shadow_height" | 46 android:layout_height="@dimen/action_bar_shadow_height" |
| 46 android:layout_below="@id/action_bar" | 47 android:layout_below="@id/action_bar" |
| 47 android:layout_alignParentStart="true" | 48 android:layout_alignParentStart="true" |
| 48 android:layout_alignParentEnd="true" /> | 49 android:layout_alignParentEnd="true" /> |
| 49 | 50 |
| 50 </RelativeLayout> | 51 </RelativeLayout> |
| OLD | NEW |