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

Side by Side Diff: chrome/android/java_staging/res/layout/eb_search_result_item.xml

Issue 1141283003: Upstream oodles of Chrome for Android code into Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: final patch? Created 5 years, 7 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 unified diff | Download patch
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
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
4 found in the LICENSE file. -->
5
6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
7 android:layout_width="match_parent"
8 android:layout_height="wrap_content"
9 android:orientation="horizontal"
10 android:padding="12dp"
11 android:paddingStart="0dp" >
12
13 <org.chromium.chrome.browser.enhancedbookmarks.EnhancedBookmarkSalientImageV iew
14 android:id="@+id/round_image"
15 android:layout_width="40dp"
16 android:layout_height="40dp"
17 android:layout_marginEnd="16dp"
18 android:layout_marginStart="16dp"
19 android:scaleType="center" />
20
21 <LinearLayout
22 android:layout_width="match_parent"
23 android:layout_height="wrap_content"
24 android:orientation="vertical" >
25
26 <TextView
27 android:id="@+id/title"
28 android:layout_width="wrap_content"
29 android:layout_height="wrap_content"
30 android:singleLine="true"
31 android:textColor="#d9000000"
32 android:textSize="16sp" />
33
34 <TextView
35 android:id="@+id/url"
36 android:layout_width="wrap_content"
37 android:layout_height="wrap_content"
38 android:singleLine="true"
39 android:textColor="#8c000000"
40 android:textSize="12sp" />
41
42 <TextView
43 android:id="@+id/description"
44 android:layout_width="match_parent"
45 android:layout_height="wrap_content"
46 android:ellipsize="end"
47 android:maxLines="3"
48 android:paddingTop="5dp"
49 android:textColor="#d9000000"
50 android:textSize="14sp"
51 android:visibility="gone" />
52 </LinearLayout>
53
54 </LinearLayout>
OLDNEW
« no previous file with comments | « chrome/android/java_staging/res/layout/eb_search_core.xml ('k') | chrome/android/java_staging/res/layout/find_in_page.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698