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

Unified Diff: components/autofill/content/browser/wallet/wallet_address.h

Issue 22009003: [Autofill] Distinguish between native field types and potentially HTML field types. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: components/autofill/content/browser/wallet/wallet_address.h
diff --git a/components/autofill/content/browser/wallet/wallet_address.h b/components/autofill/content/browser/wallet/wallet_address.h
index fe9ef9a96405b190822333345293e794e00d6108..cead6cc5d4c6814c8f12484d8a35e3c7df361bb7 100644
--- a/components/autofill/content/browser/wallet/wallet_address.h
+++ b/components/autofill/content/browser/wallet/wallet_address.h
@@ -10,7 +10,6 @@
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "base/strings/string16.h"
-#include "components/autofill/core/browser/field_types.h"
namespace base {
class DictionaryValue;
@@ -19,6 +18,7 @@ class DictionaryValue;
namespace autofill {
class AutofillProfile;
+class AutofillType;
namespace wallet {
@@ -91,8 +91,8 @@ class Address {
base::string16 DisplayNameDetail() const;
// Returns data appropriate for |type|.
- base::string16 GetInfo(AutofillFieldType type,
- const std::string& app_locale) const;
+ base::string16 GetInfo(const AutofillType& type,
+ const std::string& app_locale) const;
const std::string& country_name_code() const { return country_name_code_; }
const base::string16& recipient_name() const { return recipient_name_; }

Powered by Google App Engine
This is Rietveld 408576698