| Index: components/autofill/browser/autofill_profile.h
|
| diff --git a/components/autofill/browser/autofill_profile.h b/components/autofill/browser/autofill_profile.h
|
| index a3127b8da3377a644a2050ca9578764b636f89bc..7ccb29b5817440e658056e21d5ce18d908098920 100644
|
| --- a/components/autofill/browser/autofill_profile.h
|
| +++ b/components/autofill/browser/autofill_profile.h
|
| @@ -12,6 +12,7 @@
|
| #include <string>
|
| #include <vector>
|
|
|
| +#include "base/compiler_specific.h"
|
| #include "base/string16.h"
|
| #include "components/autofill/browser/address.h"
|
| #include "components/autofill/browser/autofill_type.h"
|
| @@ -19,6 +20,7 @@
|
| #include "components/autofill/browser/field_types.h"
|
| #include "components/autofill/browser/form_group.h"
|
| #include "components/autofill/browser/phone_number.h"
|
| +#include "components/autofill/common/autofill_export.h"
|
|
|
| namespace autofill {
|
|
|
| @@ -28,7 +30,7 @@ struct FormFieldData;
|
| // implements the FormGroup interface so that owners of this object can request
|
| // form information from the profile, and the profile will delegate the request
|
| // to the requested form group type.
|
| -class AutofillProfile : public FormGroup {
|
| +class AUTOFILL_EXPORT AutofillProfile : NON_EXPORTED_BASE(public FormGroup) {
|
| public:
|
| explicit AutofillProfile(const std::string& guid);
|
|
|
|
|