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

Unified 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: undo revival of unused includes Created 4 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
Index: third_party/WebKit/Source/core/page/DragState.h
diff --git a/third_party/WebKit/Source/core/page/DragState.h b/third_party/WebKit/Source/core/page/DragState.h
index bae382f6ddbe2e636aa45abd11b79a756e045bb6..b7b3d3efa322837c40f10cc2d8607e02e874e6d9 100644
--- a/third_party/WebKit/Source/core/page/DragState.h
+++ b/third_party/WebKit/Source/core/page/DragState.h
@@ -29,15 +29,13 @@
#include "core/page/DragActions.h"
#include "platform/heap/Handle.h"
#include "wtf/Noncopyable.h"
-#include "wtf/RefPtr.h"
namespace blink {
class DataTransfer;
class Node;
-// TODO(Oilpan): when Node is always on the heap, just derive from GarbageCollected<>.
-class DragState final : public GarbageCollectedFinalized<DragState> {
+class DragState final : public GarbageCollected<DragState> {
WTF_MAKE_NONCOPYABLE(DragState);
public:
DragState() { }

Powered by Google App Engine
This is Rietveld 408576698