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/platform/heap/PendingGCRunner.h

Issue 1402103004: Oilpan: Factor out GC-related enum definitions to BlinkGC.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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/heap/PendingGCRunner.h
diff --git a/third_party/WebKit/Source/platform/heap/PendingGCRunner.h b/third_party/WebKit/Source/platform/heap/PendingGCRunner.h
index 6d41f0b3552a2b7a4ac515bbf63ed97f533d2a6b..9f6131c6d7392297a29235ae40de24417a258680 100644
--- a/third_party/WebKit/Source/platform/heap/PendingGCRunner.h
+++ b/third_party/WebKit/Source/platform/heap/PendingGCRunner.h
@@ -61,7 +61,7 @@ public:
m_nesting--;
ThreadState* state = ThreadState::current();
- state->safePoint(m_nesting ? ThreadState::HeapPointersOnStack : ThreadState::NoHeapPointersOnStack);
+ state->safePoint(m_nesting ? BlinkGC::HeapPointersOnStack : BlinkGC::NoHeapPointersOnStack);
}
private:
« no previous file with comments | « third_party/WebKit/Source/platform/heap/PagePool.cpp ('k') | third_party/WebKit/Source/platform/heap/SafePoint.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698