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

Unified Diff: third_party/WebKit/Source/platform/heap/ThreadState.h

Issue 2691073004: Remove SafePointAwareMutexLocker (Closed)
Patch Set: Created 3 years, 10 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/ThreadState.h
diff --git a/third_party/WebKit/Source/platform/heap/ThreadState.h b/third_party/WebKit/Source/platform/heap/ThreadState.h
index d131fcfeda66f94e6b210cfc78dea4c7548a5985..2b7e8588170274dd9b87275c36ee3451dd86cc79 100644
--- a/third_party/WebKit/Source/platform/heap/ThreadState.h
+++ b/third_party/WebKit/Source/platform/heap/ThreadState.h
@@ -59,7 +59,6 @@ class GarbageCollectedMixinConstructorMarker;
class PersistentNode;
class PersistentRegion;
class BaseArena;
-class SafePointAwareMutexLocker;
class SafePointBarrier;
class ThreadHeap;
class ThreadState;
@@ -336,7 +335,7 @@ class PLATFORM_EXPORT ThreadState {
// Mark current thread as running inside safepoint.
void enterSafePoint(BlinkGC::StackState, void*);
- void leaveSafePoint(SafePointAwareMutexLocker* = nullptr);
+ void leaveSafePoint();
bool isAtSafePoint() const { return m_atSafePoint; }
void addInterruptor(std::unique_ptr<BlinkGCInterruptor>);
@@ -624,7 +623,6 @@ class PLATFORM_EXPORT ThreadState {
return m_interruptors;
}
- friend class SafePointAwareMutexLocker;
friend class SafePointBarrier;
friend class SafePointScope;

Powered by Google App Engine
This is Rietveld 408576698