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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8PerformanceObserverCallback.cpp

Issue 2350813005: bindings: Support sequence in callback function arguments (Closed)
Patch Set: rebase Created 4 years, 3 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/V8PerformanceObserverCallback.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8PerformanceObserverCallback.cpp b/third_party/WebKit/Source/bindings/core/v8/V8PerformanceObserverCallback.cpp
index 88386581c5e24a1e497e71ed37b3d3ee77fe09aa..45fdb9809542e01c5cb98607424bb9c2dbd34b9e 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8PerformanceObserverCallback.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/V8PerformanceObserverCallback.cpp
@@ -33,7 +33,8 @@ void V8PerformanceObserverCallback::handleEvent(PerformanceObserverEntryList* en
if (!canInvokeCallback())
return;
- m_callback->call(m_scriptState.get(), observer, entries, observer);
+ TrackExceptionState exceptionState;
+ m_callback->call(m_scriptState.get(), observer, exceptionState, entries, observer);
}
DEFINE_TRACE(V8PerformanceObserverCallback)

Powered by Google App Engine
This is Rietveld 408576698