| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2015 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 <view xmlns:android="http://schemas.android.com/apk/res/android" | 6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 7 class="org.chromium.chrome.browser.snackbar.SnackbarManager$WindowDismissalA
wareLayout" | |
| 8 android:layout_width="match_parent" | 7 android:layout_width="match_parent" |
| 9 android:layout_height="wrap_content" | 8 android:layout_height="wrap_content" |
| 10 android:minHeight="@dimen/snackbar_min_height" | 9 android:minHeight="@dimen/snackbar_min_height" |
| 11 android:orientation="horizontal" > | 10 android:orientation="horizontal" > |
| 12 | 11 |
| 13 <ImageView android:id="@+id/snackbar_profile_image" | 12 <ImageView android:id="@+id/snackbar_profile_image" |
| 14 android:layout_width="24dp" | 13 android:layout_width="24dp" |
| 15 android:layout_height="24dp" | 14 android:layout_height="24dp" |
| 16 android:layout_gravity="center_vertical" | 15 android:layout_gravity="center_vertical" |
| 17 android:layout_marginStart="12dp" | 16 android:layout_marginStart="12dp" |
| (...skipping 20 matching lines...) Expand all Loading... |
| 38 android:layout_height="@dimen/snackbar_min_height" | 37 android:layout_height="@dimen/snackbar_min_height" |
| 39 android:layout_gravity="center_vertical" | 38 android:layout_gravity="center_vertical" |
| 40 android:paddingEnd="24dp" | 39 android:paddingEnd="24dp" |
| 41 android:paddingStart="24dp" | 40 android:paddingStart="24dp" |
| 42 android:fontFamily="sans-serif-medium" | 41 android:fontFamily="sans-serif-medium" |
| 43 android:textAllCaps="true" | 42 android:textAllCaps="true" |
| 44 android:textColor="@color/snackbar_button_color" | 43 android:textColor="@color/snackbar_button_color" |
| 45 android:textSize="14sp" | 44 android:textSize="14sp" |
| 46 style="@style/ButtonCompatBorderless" /> | 45 style="@style/ButtonCompatBorderless" /> |
| 47 | 46 |
| 48 </view> | 47 </LinearLayout> |
| OLD | NEW |