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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/SharedPersistent.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/SharedPersistent.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/SharedPersistent.h b/third_party/WebKit/Source/bindings/core/v8/SharedPersistent.h
index 2ac2e6d3e43826cacc990d46b429cb88ef7cb08d..87e84759cdcfc8329ab409579050a5ec7c0b46e5 100644
--- a/third_party/WebKit/Source/bindings/core/v8/SharedPersistent.h
+++ b/third_party/WebKit/Source/bindings/core/v8/SharedPersistent.h
@@ -54,11 +54,6 @@ class SharedPersistent : public RefCounted<SharedPersistent<T>> {
bool isEmpty() { return m_value.isEmpty(); }
- void setReference(const v8::Persistent<v8::Object>& parent,
- v8::Isolate* isolate) {
- m_value.setReference(parent, isolate);
- }
-
bool operator==(const SharedPersistent<T>& other) {
return m_value == other.m_value;
}

Powered by Google App Engine
This is Rietveld 408576698