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

Side by Side Diff: chrome/android/java/res/layout/search_engine_recent_title.xml

Issue 2367373003: [Android] Allow setting recently visited search engines as default search engine (Closed)
Patch Set: Update based on 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 unified diff | Download patch
OLDNEW
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 -->
6 5
7 <TextView xmlns:android="http://schemas.android.com/apk/res/android" 6 <TextView xmlns:android="http://schemas.android.com/apk/res/android"
8 android:drawablePadding="32dp" 7 android:text="@string/search_engine_recently_visited"
8 android:layout_width="match_parent"
9 android:layout_height="wrap_content"
10 android:textColor="@color/light_active_color"
11 android:textStyle="bold"
gone 2016/11/01 21:30:29 I think you're actually trying to find Roboto Medi
ltian 2016/11/01 22:59:36 Done.
12 android:textSize="16sp"
9 android:gravity="center_vertical" 13 android:gravity="center_vertical"
10 android:id="@+id/navigation_item_label" 14 android:paddingBottom="16dp"
11 android:layout_height="wrap_content"
12 android:layout_width="match_parent"
13 android:paddingStart="16dp"
14 android:paddingEnd="16dp"
15 android:paddingTop="16dp" 15 android:paddingTop="16dp"
16 android:paddingBottom="20dp" 16 android:paddingStart="12dp"
17 style="@style/NavigationTextStyle"/> 17 android:paddingEnd="6dp"
18 android:clickable="false" />
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698