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

Unified Diff: Source/core/editing/VisibleSelection.h

Issue 299353004: Oilpan: move editing objects to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add WTF_ALLOW_INIT_WITH_MEM_FUNCTIONS() and make use of it Created 6 years, 7 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: Source/core/editing/VisibleSelection.h
diff --git a/Source/core/editing/VisibleSelection.h b/Source/core/editing/VisibleSelection.h
index c14630c15d700258279bc14bf5c7d10716c4e681..db71261e143aa7a270ecc9e711bf2ba0a4e93818 100644
--- a/Source/core/editing/VisibleSelection.h
+++ b/Source/core/editing/VisibleSelection.h
@@ -39,6 +39,7 @@ const EAffinity SEL_DEFAULT_AFFINITY = DOWNSTREAM;
enum SelectionDirection { DirectionForward, DirectionBackward, DirectionRight, DirectionLeft };
class VisibleSelection {
+ DISALLOW_ALLOCATION();
public:
VisibleSelection();
@@ -128,6 +129,8 @@ public:
void clearChangeObserver();
void didChange(); // Fire the change observer, if any.
+ void trace(Visitor*);
+
#ifndef NDEBUG
void debugPosition() const;
void formatForDebugger(char* buffer, unsigned length) const;
@@ -156,6 +159,8 @@ private:
EAffinity m_affinity; // the upstream/downstream affinity of the caret
+ // Oilpan: this reference has a lifetime that is at least as long
+ // as this object.
ChangeObserver* m_changeObserver;
haraken 2014/05/29 01:14:15 I agree that no weak processing is needed for the
sof 2014/05/29 10:03:53 Done, made ChangeObserver a GC mixin.
// these are cached, can be recalculated by validate()

Powered by Google App Engine
This is Rietveld 408576698