| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY! | 5 // This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY! |
| 6 | 6 |
| 7 #include "config.h" | 7 #include "config.h" |
| 8 #include "V8ArrayBuffer.h" | 8 #include "V8ArrayBuffer.h" |
| 9 | 9 |
| 10 #include "bindings/core/v8/ExceptionState.h" | 10 #include "bindings/core/v8/ExceptionState.h" |
| 11 #include "bindings/core/v8/V8ArrayBuffer.h" | 11 #include "bindings/core/v8/V8ArrayBuffer.h" |
| 12 #include "bindings/core/v8/V8DOMConfiguration.h" | 12 #include "bindings/core/v8/V8DOMConfiguration.h" |
| 13 #include "bindings/core/v8/V8ObjectConstructor.h" | 13 #include "bindings/core/v8/V8ObjectConstructor.h" |
| 14 #include "core/dom/ContextFeatures.h" | 14 #include "core/dom/ContextFeatures.h" |
| 15 #include "core/dom/DOMArrayBufferDeallocationObserver.h" | 15 #include "core/dom/DOMArrayBufferDeallocationObserver.h" |
| 16 #include "core/dom/Document.h" | 16 #include "core/dom/Document.h" |
| 17 #include "platform/RuntimeEnabledFeatures.h" | 17 #include "platform/RuntimeEnabledFeatures.h" |
| 18 #include "platform/TraceEvent.h" | 18 #include "platform/TraceEvent.h" |
| 19 #include "wtf/GetPtr.h" | 19 #include "wtf/GetPtr.h" |
| 20 #include "wtf/RefPtr.h" | 20 #include "wtf/RefPtr.h" |
| 21 | 21 |
| 22 namespace blink { | 22 namespace blink { |
| 23 | 23 |
| 24 const WrapperTypeInfo V8ArrayBuffer::wrapperTypeInfo = { gin::kEmbedderBlink, 0,
V8ArrayBuffer::refObject, V8ArrayBuffer::derefObject, V8ArrayBuffer::trace, 0,
0, V8ArrayBuffer::installConditionallyEnabledMethods, V8ArrayBuffer::installCond
itionallyEnabledProperties, "ArrayBuffer", 0, WrapperTypeInfo::WrapperTypeObject
Prototype, WrapperTypeInfo::ObjectClassId, WrapperTypeInfo::NotInheritFromEventT
arget, WrapperTypeInfo::Independent, WrapperTypeInfo::RefCountedObject }; | 24 const WrapperTypeInfo V8ArrayBuffer::wrapperTypeInfo = { gin::kEmbedderBlink, 0,
V8ArrayBuffer::refObject, V8ArrayBuffer::derefObject, V8ArrayBuffer::trace, 0,
0, V8ArrayBuffer::preparePrototypeObject, V8ArrayBuffer::installConditionallyEna
bledProperties, "ArrayBuffer", 0, WrapperTypeInfo::WrapperTypeObjectPrototype, W
rapperTypeInfo::ObjectClassId, WrapperTypeInfo::NotInheritFromEventTarget, Wrapp
erTypeInfo::Independent, WrapperTypeInfo::RefCountedObject }; |
| 25 | 25 |
| 26 // This static member must be declared by DEFINE_WRAPPERTYPEINFO in TestArrayBuf
fer.h. | 26 // This static member must be declared by DEFINE_WRAPPERTYPEINFO in TestArrayBuf
fer.h. |
| 27 // For details, see the comment of DEFINE_WRAPPERTYPEINFO in | 27 // For details, see the comment of DEFINE_WRAPPERTYPEINFO in |
| 28 // bindings/core/v8/ScriptWrappable.h. | 28 // bindings/core/v8/ScriptWrappable.h. |
| 29 const WrapperTypeInfo& TestArrayBuffer::s_wrapperTypeInfo = V8ArrayBuffer::wrapp
erTypeInfo; | 29 const WrapperTypeInfo& TestArrayBuffer::s_wrapperTypeInfo = V8ArrayBuffer::wrapp
erTypeInfo; |
| 30 | 30 |
| 31 bool V8ArrayBuffer::hasInstance(v8::Local<v8::Value> v8Value, v8::Isolate* isola
te) | 31 bool V8ArrayBuffer::hasInstance(v8::Local<v8::Value> v8Value, v8::Isolate* isola
te) |
| 32 { | 32 { |
| 33 return v8Value->IsArrayBuffer(); | 33 return v8Value->IsArrayBuffer(); |
| 34 } | 34 } |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 { | 67 { |
| 68 scriptWrappable->toImpl<TestArrayBuffer>()->ref(); | 68 scriptWrappable->toImpl<TestArrayBuffer>()->ref(); |
| 69 } | 69 } |
| 70 | 70 |
| 71 void V8ArrayBuffer::derefObject(ScriptWrappable* scriptWrappable) | 71 void V8ArrayBuffer::derefObject(ScriptWrappable* scriptWrappable) |
| 72 { | 72 { |
| 73 scriptWrappable->toImpl<TestArrayBuffer>()->deref(); | 73 scriptWrappable->toImpl<TestArrayBuffer>()->deref(); |
| 74 } | 74 } |
| 75 | 75 |
| 76 } // namespace blink | 76 } // namespace blink |
| OLD | NEW |