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

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

Issue 14129005: Remove "Use billing for shipping" checkbox in favor of item in suggestions menu. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments Created 7 years, 8 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 | Annotate | Revision Log
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (c) 2013 The Chromium Authors. All rights reserved. 2 <!-- Copyright (c) 2013 The Chromium Authors. All rights reserved.
3 3
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 <GridLayout xmlns:android="http://schemas.android.com/apk/res/android" 7 <GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
8 android:id="@+id/general_layout" 8 android:id="@+id/general_layout"
9 android:layout_width="match_parent" 9 android:layout_width="match_parent"
10 android:layout_height="wrap_content" 10 android:layout_height="wrap_content"
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 android:layout_columnSpan="4"/> 83 android:layout_columnSpan="4"/>
84 <TextView 84 <TextView
85 android:id="@+id/shipping_label" 85 android:id="@+id/shipping_label"
86 android:layout_marginLeft="@dimen/autofill_steady_margin" 86 android:layout_marginLeft="@dimen/autofill_steady_margin"
87 android:layout_columnSpan="2" 87 android:layout_columnSpan="2"
88 android:textStyle="bold" 88 android:textStyle="bold"
89 android:textSize="@dimen/autofill_steady_text_size"/> 89 android:textSize="@dimen/autofill_steady_text_size"/>
90 <Space 90 <Space
91 android:layout_gravity="fill" 91 android:layout_gravity="fill"
92 android:layout_columnSpan="2"/> 92 android:layout_columnSpan="2"/>
93 <CheckBox
94 android:id="@+id/use_billing_checkbox"
95 android:padding="@dimen/autofill_steady_margin"
96 android:textSize="@dimen/autofill_notification_text_size"
97 android:layout_gravity="fill_horizontal"
98 android:layout_columnSpan="4"/>
99 <Spinner 93 <Spinner
100 android:layout_margin="@dimen/autofill_steady_margin" 94 android:layout_margin="@dimen/autofill_steady_margin"
101 android:id="@+id/address_spinner" 95 android:id="@+id/address_spinner"
102 android:padding="@dimen/autofill_menu_item_padding" 96 android:padding="@dimen/autofill_menu_item_padding"
103 android:layout_gravity="fill_horizontal" 97 android:layout_gravity="fill_horizontal"
104 android:dropDownVerticalOffset="@dimen/autofill_spinner_offset" 98 android:dropDownVerticalOffset="@dimen/autofill_spinner_offset"
105 android:layout_columnSpan="4"/> 99 android:layout_columnSpan="4"/>
106 <CheckBox 100 <CheckBox
107 android:id="@+id/save_locally_checkbox" 101 android:id="@+id/save_locally_checkbox"
108 android:padding="@dimen/autofill_steady_margin" 102 android:padding="@dimen/autofill_steady_margin"
(...skipping 15 matching lines...) Expand all
124 android:text="@string/autofill_terms_of_service" 118 android:text="@string/autofill_terms_of_service"
125 android:padding="10dp" 119 android:padding="10dp"
126 android:visibility="gone" 120 android:visibility="gone"
127 android:id="@+id/terms_info" 121 android:id="@+id/terms_info"
128 android:textSize="@dimen/autofill_notification_text_size" 122 android:textSize="@dimen/autofill_notification_text_size"
129 android:background="?android:attr/selectableItemBackground" 123 android:background="?android:attr/selectableItemBackground"
130 android:drawableRight="@drawable/arrow" 124 android:drawableRight="@drawable/arrow"
131 android:layout_columnSpan="4" 125 android:layout_columnSpan="4"
132 android:gravity="left"/> 126 android:gravity="left"/>
133 </GridLayout> 127 </GridLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698