Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6145)

Unified Diff: chrome/android/java/res/layout/history_item_view.xml

Issue 2691373004: [Android History] Even more polish (Closed)
Patch Set: Rebase Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/res/layout/history_item_view.xml
diff --git a/chrome/android/java/res/layout/history_item_view.xml b/chrome/android/java/res/layout/history_item_view.xml
index 55533d891f6780108519faa9b85e7bb4e2b1a95e..1e132fb481b7e2d79e21da16df832f5279d69ba0 100644
--- a/chrome/android/java/res/layout/history_item_view.xml
+++ b/chrome/android/java/res/layout/history_item_view.xml
@@ -9,12 +9,19 @@
android:layout_width="match_parent"
android:layout_height="wrap_content" >
+<!-- TODO(twellington): remove start/end margin when new assets with
+ correct built in padding are available. The end
+ padding is set programatically so margin is used
+ rather than padding to achieve the correct visual
+ effect. -->
<LinearLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="16dp"
android:paddingBottom="16dp"
+ android:layout_marginStart="1dp"
+ android:layout_marginEnd="1dp"
android:orientation="horizontal" >
<ImageView

Powered by Google App Engine
This is Rietveld 408576698