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

Unified Diff: Source/core/dom/StaticNodeList.cpp

Issue 64203002: Report size of the external memory to V8 in StaticNodeList (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: updates Created 7 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
« no previous file with comments | « Source/core/dom/StaticNodeList.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/StaticNodeList.cpp
diff --git a/Source/core/dom/StaticNodeList.cpp b/Source/core/dom/StaticNodeList.cpp
index 10f4b281435a3e49384e2b664f5b2cf438cb5587..addd65dc52486dcb3329de80237d5fabab69bf07 100644
--- a/Source/core/dom/StaticNodeList.cpp
+++ b/Source/core/dom/StaticNodeList.cpp
@@ -31,8 +31,23 @@
#include "core/dom/Element.h"
+#include <v8.h>
+
namespace WebCore {
+PassRefPtr<StaticNodeList> StaticNodeList::adopt(Vector<RefPtr<Node> >& nodes)
+{
+ RefPtr<StaticNodeList> nodeList = adoptRef(new StaticNodeList);
+ nodeList->m_nodes.swap(nodes);
+ v8::V8::AdjustAmountOfExternalAllocatedMemory(nodeList->m_nodes.capacity() * sizeof(RefPtr<Node>));
+ return nodeList.release();
+}
+
+StaticNodeList::~StaticNodeList()
+{
+ v8::V8::AdjustAmountOfExternalAllocatedMemory(-static_cast<int>(m_nodes.capacity() * sizeof(RefPtr<Node>)));
+}
+
unsigned StaticNodeList::length() const
{
return m_nodes.size();
« no previous file with comments | « Source/core/dom/StaticNodeList.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698