| Index: third_party/WebKit/Source/bindings/core/v8/ScopedPersistent.h
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/ScopedPersistent.h b/third_party/WebKit/Source/bindings/core/v8/ScopedPersistent.h
|
| index f2b1143ad542d45768a1b2fba939afc6245b55d2..465dcecfb78db4726e8707b13c34dc077b3706f6 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/ScopedPersistent.h
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/ScopedPersistent.h
|
| @@ -87,11 +87,6 @@ class ScopedPersistent {
|
| // Note: This is clear in the std::unique_ptr sense, not the v8::Handle sense.
|
| void clear() { m_handle.Reset(); }
|
|
|
| - void setReference(const v8::Persistent<v8::Object>& parent,
|
| - v8::Isolate* isolate) {
|
| - isolate->SetReference(parent, m_handle);
|
| - }
|
| -
|
| bool operator==(const ScopedPersistent<T>& other) {
|
| return m_handle == other.m_handle;
|
| }
|
|
|