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

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

Issue 1904553003: Java implementation of PaymentRequest mojo service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 4 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
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/autofill/PersonalDataManager.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- 2 <!--
3 Copyright 2016 The Chromium Authors. All rights reserved. 3 Copyright 2016 The Chromium Authors. All rights reserved.
4 4
5 Use of this source code is governed by a BSD-style license that can be 5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 6 found in the LICENSE file.
7 --> 7 -->
8 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 8 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
9 android:orientation="vertical"> 9 android:orientation="vertical">
10 10
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 android:textColor="#0000ff" 213 android:textColor="#0000ff"
214 android:background="#ffffff" 214 android:background="#ffffff"
215 style="?android:attr/buttonBarButtonStyle" /> 215 style="?android:attr/buttonBarButtonStyle" />
216 216
217 <Button 217 <Button
218 android:id="@+id/payButton" 218 android:id="@+id/payButton"
219 android:layout_gravity="bottom" 219 android:layout_gravity="bottom"
220 android:layout_height="wrap_content" 220 android:layout_height="wrap_content"
221 android:layout_weight="1" 221 android:layout_weight="1"
222 android:layout_width="0dp" 222 android:layout_width="0dp"
223 android:enabled="false"
223 android:text="@string/payments_pay_button" 224 android:text="@string/payments_pay_button"
224 android:textColor="#ffffff" 225 android:textColor="#ffffff"
225 android:background="#0000ff" 226 android:background="#0000ff"
226 style="?android:attr/buttonBarButtonStyle" /> 227 style="?android:attr/buttonBarButtonStyle" />
227 </LinearLayout> 228 </LinearLayout>
228 229
229 </LinearLayout> 230 </LinearLayout>
230 231
231 <LinearLayout 232 <LinearLayout
232 android:id="@+id/waitingOverlay" 233 android:id="@+id/waitingOverlay"
(...skipping 20 matching lines...) Expand all
253 254
254 <TextView 255 <TextView
255 android:id="@+id/waitingMessage" 256 android:id="@+id/waitingMessage"
256 android:layout_width="wrap_content" 257 android:layout_width="wrap_content"
257 android:layout_height="wrap_content" 258 android:layout_height="wrap_content"
258 android:text="@string/payments_processing_message" 259 android:text="@string/payments_processing_message"
259 android:textColor="@color/light_active_color" 260 android:textColor="@color/light_active_color"
260 android:textSize="20sp" /> 261 android:textSize="20sp" />
261 </LinearLayout> 262 </LinearLayout>
262 </LinearLayout> 263 </LinearLayout>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/autofill/PersonalDataManager.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698