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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/WorkerScriptController.h

Issue 1381693002: Don't report promise rejection events during the microtask checkpoint (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updates 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/bindings/core/v8/WorkerScriptController.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/WorkerScriptController.h b/third_party/WebKit/Source/bindings/core/v8/WorkerScriptController.h
index 8a81458a2db3b31ecdd989d3f77c39d359f1d2cd..fa4b1c983e0a242ea31aacd2fd61c406fe41dbd9 100644
--- a/third_party/WebKit/Source/bindings/core/v8/WorkerScriptController.h
+++ b/third_party/WebKit/Source/bindings/core/v8/WorkerScriptController.h
@@ -111,7 +111,7 @@ private:
bool m_executionScheduledToTerminate;
mutable Mutex m_scheduledTerminationMutex;
- OwnPtrWillBeMember<RejectedPromises> m_rejectedPromises;
+ RefPtrWillBeMember<RejectedPromises> m_rejectedPromises;
// |m_globalScopeExecutionState| refers to a stack object
// that evaluate() allocates; evaluate() ensuring that the

Powered by Google App Engine
This is Rietveld 408576698