| 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 afd84e2348289a8ff2e3f2326b137850d9f9b1bb..772eca0b827ba670ad7eaaf7d63b957429313a32 100644
|
| --- a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
|
| +++ b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
|
| @@ -35,8 +35,7 @@
|
| #include "content/public/browser/notification_registrar.h"
|
| #include "content/public/browser/web_contents_observer.h"
|
| #include "content/public/common/ssl_status.h"
|
| -#include "third_party/libaddressinput/chromium/cpp/include/libaddressinput/address_validator.h"
|
| -#include "third_party/libaddressinput/chromium/cpp/include/libaddressinput/load_rules_delegate.h"
|
| +#include "third_party/libaddressinput/chromium/load_rules_delegate.h"
|
| #include "third_party/skia/include/core/SkColor.h"
|
| #include "ui/base/models/simple_menu_model.h"
|
| #include "ui/base/ui_base_types.h"
|
| @@ -50,8 +49,15 @@ namespace content {
|
| class WebContents;
|
| }
|
|
|
| +namespace i18n {
|
| +namespace addressinput {
|
| +struct AddressData;
|
| +}
|
| +}
|
| +
|
| namespace autofill {
|
|
|
| +class AddressValidator;
|
| class AutofillDataModel;
|
| class AutofillDialogView;
|
| class AutofillPopupControllerImpl;
|
| @@ -79,7 +85,7 @@ class AutofillDialogControllerImpl
|
| public PersonalDataManagerObserver,
|
| public AccountChooserModelDelegate,
|
| public gfx::AnimationDelegate,
|
| - public ::i18n::addressinput::LoadRulesDelegate {
|
| + public LoadRulesDelegate {
|
| public:
|
| virtual ~AutofillDialogControllerImpl();
|
|
|
| @@ -218,7 +224,7 @@ class AutofillDialogControllerImpl
|
| virtual void AnimationEnded(const gfx::Animation* animation) OVERRIDE;
|
| virtual void AnimationProgressed(const gfx::Animation* animation) OVERRIDE;
|
|
|
| - // ::i18n::addressinput::LoadRulesDelegate implementation.
|
| + // LoadRulesDelegate implementation.
|
| virtual void OnAddressValidationRulesLoaded(const std::string& country_code,
|
| bool success) OVERRIDE;
|
|
|
| @@ -249,7 +255,7 @@ class AutofillDialogControllerImpl
|
| virtual PersonalDataManager* GetManager() const;
|
|
|
| // Returns an address validation helper. May be NULL during tests.
|
| - virtual ::i18n::addressinput::AddressValidator* GetValidator();
|
| + virtual AddressValidator* GetValidator();
|
|
|
| // Returns the WalletClient* this class uses to talk to Online Wallet. Exposed
|
| // for testing.
|
| @@ -653,7 +659,7 @@ class AutofillDialogControllerImpl
|
| wallet::WalletClient wallet_client_;
|
|
|
| // A helper to validate international address input.
|
| - scoped_ptr< ::i18n::addressinput::AddressValidator> validator_;
|
| + scoped_ptr<AddressValidator> validator_;
|
|
|
| // True if |this| has ever called GetWalletItems().
|
| bool wallet_items_requested_;
|
|
|