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

Unified Diff: third_party/WebKit/Source/core/events/PromiseRejectionEvent.h

Issue 2474693002: [wrapper-tracing] Support for incrementally tracing ScopedPersistent (Closed)
Patch Set: Addressed comments Created 4 years, 1 month 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/core/events/PromiseRejectionEvent.h
diff --git a/third_party/WebKit/Source/core/events/PromiseRejectionEvent.h b/third_party/WebKit/Source/core/events/PromiseRejectionEvent.h
index e3170b4b2daa586dcfb32c44ed44f1aaee417967..b3933c372225b2ed40fb33e5c8e5beea1e491003 100644
--- a/third_party/WebKit/Source/core/events/PromiseRejectionEvent.h
+++ b/third_party/WebKit/Source/core/events/PromiseRejectionEvent.h
@@ -51,8 +51,8 @@ class CORE_EXPORT PromiseRejectionEvent final : public Event {
void dispose();
RefPtr<ScriptState> m_scriptState;
- ScopedPersistent<v8::Value> m_promise;
- ScopedPersistent<v8::Value> m_reason;
+ TraceWrapperScopedPersistent<v8::Value> m_promise;
+ TraceWrapperScopedPersistent<v8::Value> m_reason;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698