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

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

Issue 2367373003: [Android] Allow setting recently visited search engines as default search engine (Closed)
Patch Set: Created 4 years, 2 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 2016 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"
Ian Wen 2016/09/27 04:42:00 I wouldn't call this file "divider". Instead, how
ltian 2016/09/28 19:19:46 Done.
7 android:layout_width="match_parent"
8 android:layout_height="wrap_content"
9 android:gravity="center_vertical"
10 android:paddingBottom="16dp"
11 android:paddingTop="16dp"
12 android:paddingStart="12dp"
13 android:paddingEnd="6dp">
14
15 <TextView
16 android:text="@string/recently_visited"
17 android:layout_width="match_parent"
Ian Wen 2016/09/27 04:42:00 Indentation not correct. You should install androi
ltian 2016/09/28 19:19:46 Done.
18 android:layout_height="wrap_content"
19 android:textColor="@color/light_active_color"
20 android:textStyle="bold"
21 android:textSize="15sp"
22 android:gravity="center_vertical"/>
23
24 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698