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

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

Issue 2785943002: [Bindings] Simplify V8PrivateProperty::Symbol methods (Closed)
Patch Set: work for comments Created 3 years, 9 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/V8MutationCallback.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8MutationCallback.cpp b/third_party/WebKit/Source/bindings/core/v8/V8MutationCallback.cpp
index ef5563b53edf9e3414ece9d5d05a392d5172aff5..e46e35fc65fe0e5b18a22c7c3a9d8c1648bfaaeb 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8MutationCallback.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/V8MutationCallback.cpp
@@ -42,7 +42,7 @@ V8MutationCallback::V8MutationCallback(v8::Local<v8::Function> callback,
: m_callback(scriptState->isolate(), this, callback),
m_scriptState(scriptState) {
V8PrivateProperty::getMutationObserverCallback(scriptState->isolate())
- .set(scriptState->context(), owner, callback);
+ .set(owner, callback);
}
V8MutationCallback::~V8MutationCallback() {}

Powered by Google App Engine
This is Rietveld 408576698