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

Unified Diff: Source/core/dom/Node.h

Issue 16896019: Replace RenderArena with PartitionAlloc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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
Index: Source/core/dom/Node.h
diff --git a/Source/core/dom/Node.h b/Source/core/dom/Node.h
index 87c486b176dfbd04ca5bc32199c0e0e25ad26f4d..b4ba48e8e037a7577c96516cdf9eacd8204eee3f 100644
--- a/Source/core/dom/Node.h
+++ b/Source/core/dom/Node.h
@@ -75,7 +75,6 @@ class PlatformWheelEvent;
class QualifiedName;
class RadioNodeList;
class RegisteredEventListener;
-class RenderArena;
class RenderBox;
class RenderBoxModelObject;
class RenderObject;
@@ -158,8 +157,9 @@ public:
static void init();
static void shutdown();
+
#if ENABLE(PARTITION_ALLOC)
- // All Nodes are placed in their own heap partition for security.
+ // Nodes are placed in their own heap partition for security.
// See http://crbug.com/246860 for detail.
void* operator new(size_t);
void operator delete(void*);

Powered by Google App Engine
This is Rietveld 408576698