| Index: components/autofill/browser/credit_card.h
|
| diff --git a/components/autofill/browser/credit_card.h b/components/autofill/browser/credit_card.h
|
| index d3c770d1e827a042f99341f44807988a7194a027..9372caf509a9fdad849c38819edd234a6fa9bfd5 100644
|
| --- a/components/autofill/browser/credit_card.h
|
| +++ b/components/autofill/browser/credit_card.h
|
| @@ -9,6 +9,7 @@
|
| #include <string>
|
| #include <vector>
|
|
|
| +#include "base/compiler_specific.h"
|
| #include "base/string16.h"
|
| #include "components/autofill/browser/field_types.h"
|
| #include "components/autofill/browser/form_group.h"
|
| @@ -18,7 +19,7 @@ namespace autofill {
|
| struct FormFieldData;
|
|
|
| // A form group that stores credit card information.
|
| -class CreditCard : public FormGroup {
|
| +class AUTOFILL_EXPORT CreditCard : NON_EXPORTED_BASE(public FormGroup) {
|
| public:
|
| explicit CreditCard(const std::string& guid);
|
|
|
| @@ -147,7 +148,8 @@ class CreditCard : public FormGroup {
|
| };
|
|
|
| // So we can compare CreditCards with EXPECT_EQ().
|
| -std::ostream& operator<<(std::ostream& os, const CreditCard& credit_card);
|
| +AUTOFILL_EXPORT std::ostream& operator<<(std::ostream& os,
|
| + const CreditCard& credit_card);
|
|
|
| // The string identifiers for credit card icon resources.
|
| extern const char* const kAmericanExpressCard;
|
|
|