| Index: third_party/WebKit/Source/core/dom/Node.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Node.cpp b/third_party/WebKit/Source/core/dom/Node.cpp
|
| index b8c3eb497fd360ab5fcc1e67c7bb0509642f0390..c735cccbd275b0b2a709940f64d63174e17c72cb 100644
|
| --- a/third_party/WebKit/Source/core/dom/Node.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Node.cpp
|
| @@ -2524,27 +2524,6 @@ unsigned Node::lengthOfContents() const {
|
| return 0;
|
| }
|
|
|
| -DISABLE_CFI_PERF
|
| -v8::Local<v8::Object> Node::wrap(v8::Isolate* isolate,
|
| - v8::Local<v8::Object> creationContext) {
|
| - DCHECK(!DOMDataStore::containsWrapper(this, isolate));
|
| -
|
| - const WrapperTypeInfo* wrapperType = wrapperTypeInfo();
|
| -
|
| - v8::Local<v8::Object> wrapper =
|
| - V8DOMWrapper::createWrapper(isolate, creationContext, wrapperType);
|
| - DCHECK(!wrapper.IsEmpty());
|
| - return associateWithWrapper(isolate, wrapperType, wrapper);
|
| -}
|
| -
|
| -v8::Local<v8::Object> Node::associateWithWrapper(
|
| - v8::Isolate* isolate,
|
| - const WrapperTypeInfo* wrapperType,
|
| - v8::Local<v8::Object> wrapper) {
|
| - return V8DOMWrapper::associateObjectWithWrapper(isolate, this, wrapperType,
|
| - wrapper);
|
| -}
|
| -
|
| } // namespace blink
|
|
|
| #ifndef NDEBUG
|
|
|