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

Unified Diff: components/autofill/browser/autofill_profile.h

Issue 13928035: WIP Component build of autofill Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: make windows compiling Created 7 years, 8 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/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);

Powered by Google App Engine
This is Rietveld 408576698