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

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

Issue 21205007: [rAc Android] Remove the old dialog implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 7 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/res/layout/autofill_general_layout.xml
diff --git a/chrome/android/java/res/layout/autofill_general_layout.xml b/chrome/android/java/res/layout/autofill_general_layout.xml
deleted file mode 100644
index 852e79fd7faa6524436d60a9edeae1dc9aaeb01a..0000000000000000000000000000000000000000
--- a/chrome/android/java/res/layout/autofill_general_layout.xml
+++ /dev/null
@@ -1,122 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (c) 2013 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"
- android:id="@+id/general_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <CheckBox
- android:id="@+id/top_checkbox_notification"
- android:layout_width="match_parent"
- android:layout_height="@dimen/autofill_edit_height"
- android:textSize="@dimen/autofill_notification_text_size"
- android:visibility="gone"/>
- <LinearLayout
- android:id="@+id/top_notifications"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:visibility="gone"/>
- <TextView
- android:id="@+id/cc_billing_label"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/autofill_steady_margin"
- android:textSize="@dimen/autofill_steady_text_size"
- android:textStyle="bold"/>
- <Spinner
- android:id="@+id/cc_billing_spinner"
- android:layout_width="match_parent"
- android:layout_height="@dimen/autofill_edit_height"
- android:layout_margin="@dimen/autofill_steady_margin"
- android:dropDownVerticalOffset="@dimen/autofill_spinner_offset"
- android:padding="@dimen/autofill_menu_item_padding"/>
- <TextView
- android:id="@+id/cc_label"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/autofill_steady_margin"
- android:textSize="@dimen/autofill_steady_text_size"
- android:textStyle="bold"/>
- <Spinner
- android:id="@+id/cc_spinner"
- android:layout_width="match_parent"
- android:layout_height="@dimen/autofill_edit_height"
- android:layout_margin="@dimen/autofill_steady_margin"
- android:dropDownVerticalOffset="@dimen/autofill_spinner_offset"
- android:padding="@dimen/autofill_menu_item_padding"/>
- <TextView
- android:id="@+id/billing_label"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/autofill_steady_margin"
- android:textSize="@dimen/autofill_steady_text_size"
- android:textStyle="bold"/>
- <Spinner
- android:id="@+id/billing_spinner"
- android:layout_width="match_parent"
- android:layout_height="@dimen/autofill_edit_height"
- android:layout_margin="@dimen/autofill_steady_margin"
- android:dropDownVerticalOffset="@dimen/autofill_spinner_offset"
- android:padding="@dimen/autofill_menu_item_padding"
- android:visibility="gone"/>
- <TextView
- android:id="@+id/shipping_label"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/autofill_steady_margin"
- android:textSize="@dimen/autofill_steady_text_size"
- android:textStyle="bold"/>
- <Spinner
- android:id="@+id/address_spinner"
- android:layout_width="match_parent"
- android:layout_height="@dimen/autofill_edit_height"
- android:layout_margin="@dimen/autofill_steady_margin"
- android:dropDownVerticalOffset="@dimen/autofill_spinner_offset"
- android:padding="@dimen/autofill_menu_item_padding"/>
- <TextView
- android:id="@+id/email_label"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/autofill_steady_margin"
- android:textSize="@dimen/autofill_steady_text_size"
- android:textStyle="bold"/>
- <Spinner
- android:id="@+id/email_spinner"
- android:layout_width="match_parent"
- android:layout_height="@dimen/autofill_edit_height"
- android:layout_margin="@dimen/autofill_steady_margin"
- android:dropDownVerticalOffset="@dimen/autofill_spinner_offset"
- android:padding="@dimen/autofill_menu_item_padding"/>
- <CheckBox
- android:id="@+id/save_locally_checkbox"
- android:layout_width="match_parent"
- android:layout_height="@dimen/autofill_edit_height"
- android:textSize="@dimen/autofill_notification_text_size"
- android:visibility="gone"/>
- <LinearLayout
- android:id="@+id/bottom_notifications"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:visibility="gone"/>
- <View
- android:id="@+id/line_bottom"
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="#D9D9DC"/>
- <Button
- android:id="@+id/terms_info"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="?android:attr/selectableItemBackground"
- android:gravity="start"
- android:padding="10dp"
- android:text="@string/autofill_terms_of_service"
- android:textSize="@dimen/autofill_notification_text_size"
- android:visibility="gone"/>
-</LinearLayout>

Powered by Google App Engine
This is Rietveld 408576698