| 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 <org.chromium.chrome.browser.history.HistoryItemView | 6 <org.chromium.chrome.browser.history.HistoryItemView |
| 7 xmlns:android="http://schemas.android.com/apk/res/android" | 7 xmlns:android="http://schemas.android.com/apk/res/android" |
| 8 xmlns:chrome="http://schemas.android.com/apk/res-auto" | 8 xmlns:chrome="http://schemas.android.com/apk/res-auto" |
| 9 android:layout_width="match_parent" | 9 android:layout_width="match_parent" |
| 10 android:layout_height="wrap_content" > | 10 android:layout_height="wrap_content" > |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 android:ellipsize="end" | 45 android:ellipsize="end" |
| 46 android:textColor="@color/default_text_color" | 46 android:textColor="@color/default_text_color" |
| 47 android:textSize="16sp" /> | 47 android:textSize="16sp" /> |
| 48 | 48 |
| 49 <TextView | 49 <TextView |
| 50 android:id="@+id/domain" | 50 android:id="@+id/domain" |
| 51 android:layout_width="match_parent" | 51 android:layout_width="match_parent" |
| 52 android:layout_height="wrap_content" | 52 android:layout_height="wrap_content" |
| 53 android:singleLine="true" | 53 android:singleLine="true" |
| 54 android:ellipsize="end" | 54 android:ellipsize="end" |
| 55 android:textColor="@color/google_grey_600" | 55 android:textColor="@color/black_alpha_54" |
| 56 android:textSize="14sp" /> | 56 android:textSize="14sp" /> |
| 57 </LinearLayout> | 57 </LinearLayout> |
| 58 | 58 |
| 59 <org.chromium.chrome.browser.widget.TintedImageButton | 59 <org.chromium.chrome.browser.widget.TintedImageButton |
| 60 android:id="@+id/remove" | 60 android:id="@+id/remove" |
| 61 style="@style/HistoryEndIcon" | 61 style="@style/HistoryEndIcon" |
| 62 android:contentDescription="@string/remove" | 62 android:contentDescription="@string/remove" |
| 63 android:src="@drawable/btn_trash" | 63 android:src="@drawable/btn_trash" |
| 64 chrome:chrometint="@color/dark_mode_tint" /> | 64 chrome:chrometint="@color/dark_mode_tint" /> |
| 65 </LinearLayout> | 65 </LinearLayout> |
| 66 | 66 |
| 67 </org.chromium.chrome.browser.history.HistoryItemView> | 67 </org.chromium.chrome.browser.history.HistoryItemView> |
| OLD | NEW |