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

Unified Diff: Source/core/inspector/DOMEditor.h

Issue 298873004: Oilpan: Move DOMEditor to the heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 years, 6 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 | « no previous file | Source/core/inspector/DOMEditor.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/DOMEditor.h
diff --git a/Source/core/inspector/DOMEditor.h b/Source/core/inspector/DOMEditor.h
index 29a771d1e2f43e31f421f37d0f9e36cb141a059e..00528cb09ef863dd81635cb4ef0fe5b5f8189f34 100644
--- a/Source/core/inspector/DOMEditor.h
+++ b/Source/core/inspector/DOMEditor.h
@@ -44,11 +44,13 @@ class Text;
typedef String ErrorString;
-class DOMEditor {
- WTF_MAKE_NONCOPYABLE(DOMEditor); WTF_MAKE_FAST_ALLOCATED;
+class DOMEditor FINAL : public NoBaseWillBeGarbageCollected<DOMEditor> {
+ WTF_MAKE_NONCOPYABLE(DOMEditor);
+ WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
public:
explicit DOMEditor(InspectorHistory*);
- ~DOMEditor();
+
+ void trace(Visitor*);
bool insertBefore(Node* parentNode, PassRefPtrWillBeRawPtr<Node>, Node* anchorNode, ExceptionState&);
bool removeChild(Node* parentNode, Node*, ExceptionState&);
@@ -77,7 +79,7 @@ private:
class ReplaceChildNodeAction;
class SetNodeValueAction;
- InspectorHistory* m_history;
+ RawPtrWillBeMember<InspectorHistory> m_history;
};
« no previous file with comments | « no previous file | Source/core/inspector/DOMEditor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698