diff options
Diffstat (limited to 'webkit/glue/form_field.h')
-rw-r--r-- | webkit/glue/form_field.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/webkit/glue/form_field.h b/webkit/glue/form_field.h index 58a8653..a8480cd 100644 --- a/webkit/glue/form_field.h +++ b/webkit/glue/form_field.h @@ -9,11 +9,12 @@ #include "base/string16.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormControlElement.h" +#include "webkit/glue/webkit_glue_export.h" namespace webkit_glue { // Stores information about a field in a form. -struct FormField { +struct WEBKIT_GLUE_EXPORT FormField { FormField(); virtual ~FormField(); @@ -41,7 +42,8 @@ struct FormField { }; // So we can compare FormFields with EXPECT_EQ(). -std::ostream& operator<<(std::ostream& os, const FormField& field); +WEBKIT_GLUE_EXPORT std::ostream& operator<<(std::ostream& os, + const FormField& field); } // namespace webkit_glue |