Chromium Code Reviews

Side by Side Diff: third_party/WebKit/Source/core/page/DragState.h

Issue 1922763003: Remove unnecessary uses of GarbageCollectedFinalized<>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. 2 * Copyright (C) 2011 Google Inc.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 11 matching lines...)
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #ifndef DragState_h 26 #ifndef DragState_h
27 #define DragState_h 27 #define DragState_h
28 28
29 #include "core/page/DragActions.h" 29 #include "core/page/DragActions.h"
30 #include "platform/heap/Handle.h" 30 #include "platform/heap/Handle.h"
31 #include "wtf/Noncopyable.h" 31 #include "wtf/Noncopyable.h"
32 #include "wtf/RefPtr.h"
33 32
34 namespace blink { 33 namespace blink {
35 34
36 class DataTransfer; 35 class DataTransfer;
37 class Node; 36 class Node;
38 37
39 // TODO(Oilpan): when Node is always on the heap, just derive from GarbageCollec ted<>. 38 class DragState final : public GarbageCollected<DragState> {
40 class DragState final : public GarbageCollectedFinalized<DragState> {
41 WTF_MAKE_NONCOPYABLE(DragState); 39 WTF_MAKE_NONCOPYABLE(DragState);
42 public: 40 public:
43 DragState() { } 41 DragState() { }
44 42
45 Member<Node> m_dragSrc; // element that may be a drag source, for the curren t mouse gesture 43 Member<Node> m_dragSrc; // element that may be a drag source, for the curren t mouse gesture
46 DragSourceAction m_dragType; 44 DragSourceAction m_dragType;
47 Member<DataTransfer> m_dragDataTransfer; // used on only the source side of dragging 45 Member<DataTransfer> m_dragDataTransfer; // used on only the source side of dragging
48 46
49 DEFINE_INLINE_TRACE() 47 DEFINE_INLINE_TRACE()
50 { 48 {
51 visitor->trace(m_dragSrc); 49 visitor->trace(m_dragSrc);
52 visitor->trace(m_dragDataTransfer); 50 visitor->trace(m_dragDataTransfer);
53 } 51 }
54 }; 52 };
55 53
56 } // namespace blink 54 } // namespace blink
57 55
58 #endif // DragState_h 56 #endif // DragState_h
OLDNEW

Powered by Google App Engine