Index: Source/core/html/forms/FormController.h |
diff --git a/Source/core/html/forms/FormController.h b/Source/core/html/forms/FormController.h |
index 08c92820bfa10a6330484ae1f6702ee678713bd1..043130886ae23028cf7af687837133464842d32a 100644 |
--- a/Source/core/html/forms/FormController.h |
+++ b/Source/core/html/forms/FormController.h |
@@ -24,6 +24,7 @@ |
#include "core/html/forms/RadioButtonGroupScope.h" |
#include "platform/heap/Handle.h" |
+#include "wtf/Allocator.h" |
#include "wtf/Forward.h" |
#include "wtf/ListHashSet.h" |
#include "wtf/Vector.h" |
@@ -37,6 +38,7 @@ class HTMLFormElement; |
class SavedFormState; |
class FormControlState { |
+ ALLOW_ONLY_INLINE_ALLOCATION(); |
public: |
FormControlState() : m_type(TypeSkip) { } |
explicit FormControlState(const String& value) : m_type(TypeRestore) { m_values.append(value); } |