| 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/Document.h" | 15 #include "core/dom/Document.h" |
| 16 #include "platform/RuntimeEnabledFeatures.h" | 16 #include "platform/RuntimeEnabledFeatures.h" |
| 17 #include "platform/TraceEvent.h" | 17 #include "platform/TraceEvent.h" |
| 18 #include "wtf/GetPtr.h" | 18 #include "wtf/GetPtr.h" |
| 19 #include "wtf/RefPtr.h" | 19 #include "wtf/RefPtr.h" |
| 20 | 20 |
| 21 namespace blink { | 21 namespace blink { |
| 22 | 22 |
| 23 // Suppress warning: global constructors, because struct WrapperTypeInfo is triv
ial |
| 24 // and does not depend on another global objects. |
| 25 #if defined(COMPONENT_BUILD) && defined(WIN32) && COMPILER(CLANG) |
| 26 #pragma clang diagnostic push |
| 27 #pragma clang diagnostic ignored "-Wglobal-constructors" |
| 28 #endif |
| 23 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 }; | 29 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 }; |
| 30 #if defined(COMPONENT_BUILD) && defined(WIN32) && COMPILER(CLANG) |
| 31 #pragma clang diagnostic pop |
| 32 #endif |
| 24 | 33 |
| 25 // This static member must be declared by DEFINE_WRAPPERTYPEINFO in TestArrayBuf
fer.h. | 34 // This static member must be declared by DEFINE_WRAPPERTYPEINFO in TestArrayBuf
fer.h. |
| 26 // For details, see the comment of DEFINE_WRAPPERTYPEINFO in | 35 // For details, see the comment of DEFINE_WRAPPERTYPEINFO in |
| 27 // bindings/core/v8/ScriptWrappable.h. | 36 // bindings/core/v8/ScriptWrappable.h. |
| 28 const WrapperTypeInfo& TestArrayBuffer::s_wrapperTypeInfo = V8ArrayBuffer::wrapp
erTypeInfo; | 37 const WrapperTypeInfo& TestArrayBuffer::s_wrapperTypeInfo = V8ArrayBuffer::wrapp
erTypeInfo; |
| 29 | 38 |
| 30 bool V8ArrayBuffer::hasInstance(v8::Local<v8::Value> v8Value, v8::Isolate* isola
te) | 39 bool V8ArrayBuffer::hasInstance(v8::Local<v8::Value> v8Value, v8::Isolate* isola
te) |
| 31 { | 40 { |
| 32 return v8Value->IsArrayBuffer(); | 41 return v8Value->IsArrayBuffer(); |
| 33 } | 42 } |
| (...skipping 28 matching lines...) Expand all Loading... |
| 62 { | 71 { |
| 63 scriptWrappable->toImpl<TestArrayBuffer>()->ref(); | 72 scriptWrappable->toImpl<TestArrayBuffer>()->ref(); |
| 64 } | 73 } |
| 65 | 74 |
| 66 void V8ArrayBuffer::derefObject(ScriptWrappable* scriptWrappable) | 75 void V8ArrayBuffer::derefObject(ScriptWrappable* scriptWrappable) |
| 67 { | 76 { |
| 68 scriptWrappable->toImpl<TestArrayBuffer>()->deref(); | 77 scriptWrappable->toImpl<TestArrayBuffer>()->deref(); |
| 69 } | 78 } |
| 70 | 79 |
| 71 } // namespace blink | 80 } // namespace blink |
| OLD | NEW |