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

Unified Diff: third_party/WebKit/Source/platform/Timer.h

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/platform/Timer.h
diff --git a/third_party/WebKit/Source/platform/Timer.h b/third_party/WebKit/Source/platform/Timer.h
index c5423b6625c2d6893384515e7ba15380fd454912..e9cd4463a82709eea328676d4d7e3310136fb646 100644
--- a/third_party/WebKit/Source/platform/Timer.h
+++ b/third_party/WebKit/Source/platform/Timer.h
@@ -150,7 +150,7 @@ class TimerIsObjectAliveTrait<T, true> {
public:
static bool isHeapObjectAlive(T* objectPointer)
{
- return !Heap::willObjectBeLazilySwept(objectPointer);
+ return !ThreadHeap::willObjectBeLazilySwept(objectPointer);
}
};

Powered by Google App Engine
This is Rietveld 408576698