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

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

Issue 299353004: Oilpan: move editing objects to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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/Caret.h
diff --git a/Source/core/editing/Caret.h b/Source/core/editing/Caret.h
index 3d9f9eba45c01a49fdb3a904a670547878173b25..d39905e98ad8a0079934be2c51576ed5e01dbb1a 100644
--- a/Source/core/editing/Caret.h
+++ b/Source/core/editing/Caret.h
@@ -40,7 +40,7 @@ class RenderView;
class CaretBase {
haraken 2014/05/26 02:36:12 CaretBase needs to be a GC mix-in once we move Vis
sof 2014/05/28 08:31:35 Hmm, do we declare these kinds of private-inherite
WTF_MAKE_NONCOPYABLE(CaretBase);
- WTF_MAKE_FAST_ALLOCATED;
+ WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
protected:
enum CaretVisibility { Visible, Hidden };
explicit CaretBase(CaretVisibility = Hidden);
@@ -73,7 +73,7 @@ private:
class DragCaretController : private CaretBase {
WTF_MAKE_NONCOPYABLE(DragCaretController);
- WTF_MAKE_FAST_ALLOCATED;
+ WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
public:
static PassOwnPtr<DragCaretController> create();

Powered by Google App Engine
This is Rietveld 408576698