| Index: Source/core/page/DragData.h
|
| diff --git a/Source/core/page/DragData.h b/Source/core/page/DragData.h
|
| index 43b6bef0b154f72ac42f745b14a4a3bd5b5748a1..01009ca6d634745dd0068f2a6b3690e20e3f5c54 100644
|
| --- a/Source/core/page/DragData.h
|
| +++ b/Source/core/page/DragData.h
|
| @@ -50,6 +50,7 @@ enum DragApplicationFlags {
|
| };
|
|
|
| class CORE_EXPORT DragData {
|
| + STACK_ALLOCATED();
|
| public:
|
| enum FilenameConversionPolicy { DoNotConvertFilenames, ConvertFilenames };
|
|
|
| @@ -76,7 +77,7 @@ public:
|
| private:
|
| IntPoint m_clientPosition;
|
| IntPoint m_globalPosition;
|
| - DataObject* m_platformDragData;
|
| + Member<DataObject> m_platformDragData;
|
| DragOperation m_draggingSourceOperationMask;
|
| DragApplicationFlags m_applicationFlags;
|
| };
|
|
|