| 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 94a3878d0e85e4865273bde966557d3f06412b1c..05698627507547b6f2bd2dc9db81cd48b675d155 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
|
|
|