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

Unified Diff: chrome/android/java/res/layout/search_engine_layout.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_layout.xml
diff --git a/chrome/android/java/res/layout/search_engine_layout.xml b/chrome/android/java/res/layout/search_engine_layout.xml
deleted file mode 100644
index 8d6d44bf8fe11d841b15a96b6ec21cf944e4af2b..0000000000000000000000000000000000000000
--- a/chrome/android/java/res/layout/search_engine_layout.xml
+++ /dev/null
@@ -1,63 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright 2016 The Chromium Authors. All rights reserved.
- Use of this source code is governed by a BSD-style license that can be
- found in the LICENSE file. -->
-
-<LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:chrome="http://schemas.android.com/apk/res-auto"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:paddingTop="6dp"
- android:orientation="vertical">
-
- <ListView
- android:id="@android:id/list"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1"/>
-
- <View
- android:id="@+id/bottom_shadow"
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@drawable/toolbar_shadow_normal"
- android:scaleY="-1"
- android:visibility="invisible" />
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:orientation="horizontal"
- android:gravity="end"
- android:paddingStart="6dp"
- android:paddingEnd="6dp">
-
- <Button
- android:id="@+id/cancel_button"
- style="@style/ButtonCompatBorderless"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textColor="@color/light_active_color"
- android:text="@string/cancel"
- android:textAllCaps="true"
- android:textSize="14sp"
- android:layout_marginEnd="16dp"
- android:layout_gravity="center_vertical"/>
-
- <org.chromium.ui.widget.ButtonCompat
- android:id="@+id/save_button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textColor="@android:color/white"
- android:text="@string/save"
- android:textAllCaps="true"
- android:textSize="14sp"
- android:layout_marginEnd="8dp"
- chrome:buttonColor="@color/light_active_color"
- chrome:buttonRaised="false"
- android:layout_gravity="center_vertical"/>
-
- </LinearLayout>
-
-</LinearLayout>

Powered by Google App Engine
This is Rietveld 408576698