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

Unified Diff: sky/engine/core/dom/NodeRareData.h

Issue 709203002: Remove more oilpan. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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: sky/engine/core/dom/NodeRareData.h
diff --git a/sky/engine/core/dom/NodeRareData.h b/sky/engine/core/dom/NodeRareData.h
index 32e5deb168027f6d7c97e2cb1ba086d2487e227a..3f34fc28b6b0fd281c76c481ecb15ad4fdef39f7 100644
--- a/sky/engine/core/dom/NodeRareData.h
+++ b/sky/engine/core/dom/NodeRareData.h
@@ -31,9 +31,9 @@
namespace blink {
-class NodeMutationObserverData final : public DummyBase<NodeMutationObserverData> {
+class NodeMutationObserverData final {
WTF_MAKE_NONCOPYABLE(NodeMutationObserverData);
- WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
+ WTF_MAKE_FAST_ALLOCATED;
public:
Vector<OwnPtr<MutationObserverRegistration> > registry;
HashSet<RawPtr<MutationObserverRegistration> > transientRegistry;
@@ -55,9 +55,9 @@ private:
NodeMutationObserverData() { }
};
-class NodeRareData : public DummyBase<NodeRareData>, public NodeRareDataBase {
+class NodeRareData : public NodeRareDataBase {
WTF_MAKE_NONCOPYABLE(NodeRareData);
- WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
+ WTF_MAKE_FAST_ALLOCATED;
public:
static NodeRareData* create(RenderObject* renderer)
{
« no previous file with comments | « sky/engine/core/dom/MutationObserverRegistration.h ('k') | sky/engine/core/dom/RequestAnimationFrameCallback.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698