Chromium Code Reviews

Unified Diff: third_party/WebKit/Source/core/fetch/ImageResource.cpp

Issue 2230133002: Add ImageResource data size to V8 external memory allocation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/fetch/ImageResource.cpp
diff --git a/third_party/WebKit/Source/core/fetch/ImageResource.cpp b/third_party/WebKit/Source/core/fetch/ImageResource.cpp
index de3909e59f7334ede238066dcf19691df7c1059f..c2ae4de0dcbc4abf3d499fc4c26480ec2e38f351 100644
--- a/third_party/WebKit/Source/core/fetch/ImageResource.cpp
+++ b/third_party/WebKit/Source/core/fetch/ImageResource.cpp
@@ -40,6 +40,7 @@
#include "wtf/CurrentTime.h"
#include "wtf/StdLibExtras.h"
#include <memory>
+#include <v8.h>
namespace blink {
@@ -247,6 +248,7 @@ PassRefPtr<SharedBuffer> ImageResource::resourceBuffer() const
void ImageResource::appendData(const char* data, size_t length)
{
+ v8::Isolate::GetCurrent()->AdjustAmountOfExternalAllocatedMemory(length);
if (m_multipartParser) {
m_multipartParser->appendData(data, length);
} else {
@@ -369,6 +371,8 @@ inline void ImageResource::clearImage()
{
if (!m_image)
return;
+ int64_t length = m_image->data() ? m_image->data()->size() : 0;
+ v8::Isolate::GetCurrent()->AdjustAmountOfExternalAllocatedMemory(-length);
// If our Image has an observer, it's always us so we need to clear the back pointer
// before dropping our reference.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine