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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8IntersectionObserverCallback.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/V8IntersectionObserverCallback.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8IntersectionObserverCallback.cpp b/third_party/WebKit/Source/bindings/core/v8/V8IntersectionObserverCallback.cpp
index e218a8938b286223fdca31ad5881e9dc356c0f06..cae7162bc2de8dc666b77b8bc456b0a7b387c720 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8IntersectionObserverCallback.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/V8IntersectionObserverCallback.cpp
@@ -19,7 +19,7 @@ V8IntersectionObserverCallback::V8IntersectionObserverCallback(
ScriptState* scriptState)
: m_callback(scriptState->isolate(), callback), m_scriptState(scriptState) {
V8PrivateProperty::getIntersectionObserverCallback(scriptState->isolate())
- .set(scriptState->context(), owner, callback);
+ .set(owner, callback);
m_callback.setPhantom();
}

Powered by Google App Engine
This is Rietveld 408576698