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

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

Issue 2367373003: [Android] Allow setting recently visited search engines as default search engine (Closed)
Patch Set: Update based on Peter and Dan's comments. Created 4 years, 1 month 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/search_engine.xml
diff --git a/chrome/android/java/res/layout/search_engine.xml b/chrome/android/java/res/layout/search_engine.xml
index c447b5e04bb1b19b062edfb0a1e4ba1f3f62a50d..5b47aca0b277efbb1b13f0e3ed3524c6ba0ee95b 100644
--- a/chrome/android/java/res/layout/search_engine.xml
+++ b/chrome/android/java/res/layout/search_engine.xml
@@ -24,12 +24,19 @@
android:layout_weight="1"
android:orientation="vertical">
<TextView
- android:id="@+id/description"
+ android:id="@+id/name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:textSize="17sp" />
+ android:textSize="17sp"
+ android:textColor="@color/default_text_color" />
<TextView
- android:id="@+id/link"
+ android:id="@+id/url"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textSize="16sp"
+ android:textColor="@color/descriptive_text_color" />
+ <TextView
+ android:id="@+id/location_permission"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="-12dp"

Powered by Google App Engine
This is Rietveld 408576698