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

Side by Side Diff: chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillDialog.java

Issue 13625002: Change the behavior of the [X] Save details to Wallet checkbox notification to: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . 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 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package org.chromium.chrome.browser.autofill; 5 package org.chromium.chrome.browser.autofill;
6 6
7 import android.app.AlertDialog; 7 import android.app.AlertDialog;
8 import android.content.Context; 8 import android.content.Context;
9 import android.content.DialogInterface; 9 import android.content.DialogInterface;
10 10
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 } 366 }
367 367
368 /** 368 /**
369 * @return Whether the billing address should be used as shipping address. 369 * @return Whether the billing address should be used as shipping address.
370 */ 370 */
371 public boolean shouldUseBillingForShipping() { 371 public boolean shouldUseBillingForShipping() {
372 return false; 372 return false;
373 } 373 }
374 374
375 /** 375 /**
376 * @return Whether the details entered should be saved to the currently acti ve
377 * Wallet account.
378 */
379 public boolean shouldSaveDetailsInWallet() {
380 return false;
381 }
382
383 /**
384 * @return Whether the details entered should be saved locally on the device . 376 * @return Whether the details entered should be saved locally on the device .
385 */ 377 */
386 public boolean shouldSaveDetailsLocally() { 378 public boolean shouldSaveDetailsLocally() {
387 return false; 379 return false;
388 } 380 }
389 381
390 /** 382 /**
391 * Updates the progress for the final transaction with the given value. 383 * Updates the progress for the final transaction with the given value.
392 * @param value The current progress percentage value. 384 * @param value The current progress percentage value.
393 */ 385 */
394 public void updateProgressBar(double value) { 386 public void updateProgressBar(double value) {
395 } 387 }
396 } 388 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698