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

Unified Diff: third_party/WebKit/Source/web/WebFrame.cpp

Issue 1477023003: Refactor the Heap into ThreadHeap to prepare for per thread heaps Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: third_party/WebKit/Source/web/WebFrame.cpp
diff --git a/third_party/WebKit/Source/web/WebFrame.cpp b/third_party/WebKit/Source/web/WebFrame.cpp
index 528378db7b1b9531e3660f6d1bcfa3f9c2d63aba..d94a8a9e2c44972cf6eec32d68ce54035231f4ba 100644
--- a/third_party/WebKit/Source/web/WebFrame.cpp
+++ b/third_party/WebKit/Source/web/WebFrame.cpp
@@ -324,9 +324,9 @@ ALWAYS_INLINE bool WebFrame::isFrameAlive(const WebFrame* frame)
return true;
if (frame->isWebLocalFrame())
- return Heap::isHeapObjectAlive(toWebLocalFrameImpl(frame));
+ return ThreadHeap::isHeapObjectAlive(toWebLocalFrameImpl(frame));
- return Heap::isHeapObjectAlive(toWebRemoteFrameImpl(frame));
+ return ThreadHeap::isHeapObjectAlive(toWebRemoteFrameImpl(frame));
}
template <typename VisitorDispatcher>
« no previous file with comments | « third_party/WebKit/Source/platform/testing/RunAllTests.cpp ('k') | third_party/WebKit/Source/web/WebHeap.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698