| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |