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

Unified Diff: Source/core/page/DragData.h

Issue 640303002: Enable Oilpan for core/clipboard/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: remove some slightly pointy edges Created 5 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
« no previous file with comments | « Source/core/page/DragController.cpp ('k') | Source/core/page/DragState.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
};
« no previous file with comments | « Source/core/page/DragController.cpp ('k') | Source/core/page/DragState.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698