| Index: chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
|
| diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
|
| index 4c869fd584b37c10f89b107b3b6cfdffda56160e..083c5cb5965c60f3e1bb8ea34be765a9cec8dffa 100644
|
| --- a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
|
| +++ b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
|
| @@ -205,27 +205,11 @@ class AutofillDialogControllerImpl : public AutofillDialogController,
|
| scoped_ptr<wallet::FullWallet> full_wallet) OVERRIDE;
|
| virtual void OnDidGetWalletItems(
|
| scoped_ptr<wallet::WalletItems> wallet_items) OVERRIDE;
|
| - virtual void OnDidSaveAddress(
|
| - const std::string& address_id,
|
| - const std::vector<wallet::RequiredAction>& required_actions,
|
| - const std::vector<wallet::FormFieldError>& form_field_errors) OVERRIDE;
|
| - virtual void OnDidSaveInstrument(
|
| - const std::string& instrument_id,
|
| - const std::vector<wallet::RequiredAction>& required_actions,
|
| - const std::vector<wallet::FormFieldError>& form_field_errors) OVERRIDE;
|
| - virtual void OnDidSaveInstrumentAndAddress(
|
| + virtual void OnDidSaveToWallet(
|
| const std::string& instrument_id,
|
| const std::string& address_id,
|
| const std::vector<wallet::RequiredAction>& required_actions,
|
| const std::vector<wallet::FormFieldError>& form_field_errors) OVERRIDE;
|
| - virtual void OnDidUpdateAddress(
|
| - const std::string& address_id,
|
| - const std::vector<wallet::RequiredAction>& required_actions,
|
| - const std::vector<wallet::FormFieldError>& form_field_errors) OVERRIDE;
|
| - virtual void OnDidUpdateInstrument(
|
| - const std::string& instrument_id,
|
| - const std::vector<wallet::RequiredAction>& required_actions,
|
| - const std::vector<wallet::FormFieldError>& form_field_errors) OVERRIDE;
|
| virtual void OnWalletError(
|
| wallet::WalletClient::ErrorType error_type) OVERRIDE;
|
|
|
| @@ -484,11 +468,6 @@ class AutofillDialogControllerImpl : public AutofillDialogController,
|
| // Creates an instrument based on |views_|' contents.
|
| scoped_ptr<wallet::Instrument> CreateTransientInstrument();
|
|
|
| - // Creates an update request based on |instrument|. May return NULL.
|
| - scoped_ptr<wallet::WalletClient::UpdateInstrumentRequest>
|
| - CreateUpdateInstrumentRequest(const wallet::Instrument* instrument,
|
| - const std::string& instrument_id);
|
| -
|
| // Creates an address based on the contents of |view_|.
|
| scoped_ptr<wallet::Address> CreateTransientAddress();
|
|
|
|
|