Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(140)

Side by Side Diff: Source/bindings/tests/results/V8Float64Array.cpp

Issue 18360008: Remove support for [EventTarget] IDL extended attribute (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebaseline bindings tests Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 This file is part of the Blink open source project. 2 This file is part of the Blink open source project.
3 This file has been auto-generated by CodeGeneratorV8.pm. DO NOT MODIFY! 3 This file has been auto-generated by CodeGeneratorV8.pm. DO NOT MODIFY!
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public 6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either 7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version. 8 version 2 of the License, or (at your option) any later version.
9 9
10 This library is distributed in the hope that it will be useful, 10 This library is distributed in the hope that it will be useful,
(...skipping 20 matching lines...) Expand all
31 #include "bindings/v8/V8DOMConfiguration.h" 31 #include "bindings/v8/V8DOMConfiguration.h"
32 #include "bindings/v8/V8DOMWrapper.h" 32 #include "bindings/v8/V8DOMWrapper.h"
33 #include "bindings/v8/V8ObjectConstructor.h" 33 #include "bindings/v8/V8ObjectConstructor.h"
34 #include "bindings/v8/custom/V8ArrayBufferCustom.h" 34 #include "bindings/v8/custom/V8ArrayBufferCustom.h"
35 #include "bindings/v8/custom/V8ArrayBufferViewCustom.h" 35 #include "bindings/v8/custom/V8ArrayBufferViewCustom.h"
36 #include "core/dom/ContextFeatures.h" 36 #include "core/dom/ContextFeatures.h"
37 #include "core/dom/Document.h" 37 #include "core/dom/Document.h"
38 #include "core/page/Frame.h" 38 #include "core/page/Frame.h"
39 #include "core/platform/chromium/TraceEvent.h" 39 #include "core/platform/chromium/TraceEvent.h"
40 #include "wtf/GetPtr.h" 40 #include "wtf/GetPtr.h"
41 #include "wtf/RefCounted.h"
42 #include "wtf/RefPtr.h" 41 #include "wtf/RefPtr.h"
43 #include "wtf/UnusedParam.h" 42 #include "wtf/UnusedParam.h"
44 43
45 namespace WebCore { 44 namespace WebCore {
46 45
47 static void initializeScriptWrappableForInterface(Float64Array* object) 46 static void initializeScriptWrappableForInterface(Float64Array* object)
48 { 47 {
49 if (ScriptWrappable::wrapperCanBeStoredInObject(object)) 48 if (ScriptWrappable::wrapperCanBeStoredInObject(object))
50 ScriptWrappable::setTypeInfoInObject(object, &V8Float64Array::info); 49 ScriptWrappable::setTypeInfoInObject(object, &V8Float64Array::info);
51 else 50 else
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 installPerContextProperties(wrapper, impl.get(), isolate); 221 installPerContextProperties(wrapper, impl.get(), isolate);
223 V8DOMWrapper::associateObjectWithWrapper<V8Float64Array>(impl, &info, wrappe r, isolate, WrapperConfiguration::Independent); 222 V8DOMWrapper::associateObjectWithWrapper<V8Float64Array>(impl, &info, wrappe r, isolate, WrapperConfiguration::Independent);
224 return wrapper; 223 return wrapper;
225 } 224 }
226 void V8Float64Array::derefObject(void* object) 225 void V8Float64Array::derefObject(void* object)
227 { 226 {
228 fromInternalPointer(object)->deref(); 227 fromInternalPointer(object)->deref();
229 } 228 }
230 229
231 } // namespace WebCore 230 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698