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

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

Issue 2675943003: Remove custom left overs from object grouping (Closed)
Patch Set: Rebase (0 changes) Created 3 years, 10 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/ScriptPromise.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptPromise.h b/third_party/WebKit/Source/bindings/core/v8/ScriptPromise.h
index 9e1f56366eee3157be95f5d7c4d9d2fefd164eec..6d014514992fb874c78560386d0a7e29834ad2b6 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptPromise.h
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptPromise.h
@@ -86,11 +86,6 @@ class CORE_EXPORT ScriptPromise final {
void clear() { m_promise.clear(); }
- void setReference(const v8::Persistent<v8::Object>& parent,
- v8::Isolate* isolate) {
- m_promise.setReference(parent, isolate);
- }
-
bool operator==(const ScriptPromise& value) const {
return m_promise == value.m_promise;
}

Powered by Google App Engine
This is Rietveld 408576698