| 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" > |
| 11 | 11 |
| 12 <LinearLayout | 12 <LinearLayout |
| 13 android:id="@+id/content" | 13 android:id="@+id/content" |
| 14 android:layout_width="match_parent" | 14 android:layout_width="match_parent" |
| 15 android:layout_height="wrap_content" | 15 android:layout_height="wrap_content" |
| 16 android:paddingTop="16dp" | 16 android:paddingTop="16dp" |
| 17 android:paddingBottom="16dp" | 17 android:paddingBottom="16dp" |
| 18 android:orientation="horizontal" > | 18 android:orientation="horizontal" |
| 19 android:background="@android:color/white" > |
| 19 | 20 |
| 20 <ImageView | 21 <ImageView |
| 21 android:id="@+id/icon_view" | 22 android:id="@+id/icon_view" |
| 22 style="@style/HistoryStartIcon" | 23 style="@style/HistoryStartIcon" |
| 23 android:contentDescription="@null" | 24 android:contentDescription="@null" |
| 24 android:src="@drawable/default_favicon" /> | 25 android:src="@drawable/default_favicon" /> |
| 25 | 26 |
| 26 <LinearLayout | 27 <LinearLayout |
| 27 android:layout_width="0dp" | 28 android:layout_width="0dp" |
| 28 android:layout_height="wrap_content" | 29 android:layout_height="wrap_content" |
| (...skipping 17 matching lines...) Expand all Loading... |
| 46 android:ellipsize="end" | 47 android:ellipsize="end" |
| 47 android:textColor="@color/google_grey_600" | 48 android:textColor="@color/google_grey_600" |
| 48 android:textSize="14sp" /> | 49 android:textSize="14sp" /> |
| 49 </LinearLayout> | 50 </LinearLayout> |
| 50 | 51 |
| 51 <org.chromium.chrome.browser.widget.TintedImageButton | 52 <org.chromium.chrome.browser.widget.TintedImageButton |
| 52 android:id="@+id/remove" | 53 android:id="@+id/remove" |
| 53 style="@style/HistoryEndIcon" | 54 style="@style/HistoryEndIcon" |
| 54 android:contentDescription="@string/remove" | 55 android:contentDescription="@string/remove" |
| 55 android:src="@drawable/btn_trash" | 56 android:src="@drawable/btn_trash" |
| 56 chrome:tint="@color/dark_mode_tint" /> | 57 chrome:tint="@color/history_remove_button_tint" /> |
| 57 </LinearLayout> | 58 </LinearLayout> |
| 58 | 59 |
| 59 </org.chromium.chrome.browser.history.HistoryItemView> | 60 </org.chromium.chrome.browser.history.HistoryItemView> |
| OLD | NEW |