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

Unified Diff: Source/core/core.gypi

Issue 606653006: bindings: Adds DOMArrayBuffer, etc. as thin wrappers for ArrayBuffer, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced. Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/bindings/tests/results/modules/V8TestInterface5.cpp ('k') | Source/core/css/FontFace.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/core.gypi
diff --git a/Source/core/core.gypi b/Source/core/core.gypi
index 6abec3b48bf0a3ed7ebee5dda10ef667e908850d..cc4aadce8f574c05d8953eab423eb35c8fce0e3b 100644
--- a/Source/core/core.gypi
+++ b/Source/core/core.gypi
@@ -7,8 +7,8 @@
'core_idl_files': [
'animation/Animation.idl',
'animation/AnimationEffect.idl',
- 'animation/AnimationPlayer.idl',
'animation/AnimationNode.idl',
+ 'animation/AnimationPlayer.idl',
'animation/AnimationTimeline.idl',
'animation/Timing.idl',
'clipboard/DataTransfer.idl',
@@ -50,6 +50,8 @@
'css/WebKitCSSFilterValue.idl',
'css/WebKitCSSMatrix.idl',
'css/WebKitCSSTransformValue.idl',
+ 'dom/ArrayBuffer.idl',
+ 'dom/ArrayBufferView.idl',
'dom/Attr.idl',
'dom/CDATASection.idl',
'dom/CharacterData.idl',
@@ -69,10 +71,16 @@
'dom/DOMStringList.idl',
'dom/DOMStringMap.idl',
'dom/DOMTokenList.idl',
+ 'dom/DataView.idl',
'dom/Document.idl',
'dom/DocumentFragment.idl',
'dom/DocumentType.idl',
'dom/Element.idl',
+ 'dom/Float32Array.idl',
+ 'dom/Float64Array.idl',
+ 'dom/Int16Array.idl',
+ 'dom/Int32Array.idl',
+ 'dom/Int8Array.idl',
'dom/Iterator.idl',
'dom/MessageChannel.idl',
'dom/MessagePort.idl',
@@ -92,6 +100,10 @@
'dom/TouchList.idl',
'dom/TreeWalker.idl',
'dom/URL.idl',
+ 'dom/Uint16Array.idl',
+ 'dom/Uint32Array.idl',
+ 'dom/Uint8Array.idl',
+ 'dom/Uint8ClampedArray.idl',
'dom/XMLDocument.idl',
'dom/shadow/ShadowRoot.idl',
'editing/Selection.idl',
@@ -2041,6 +2053,14 @@
'dom/ContextLifecycleObserver.cpp',
'dom/ContextLifecycleObserver.h',
'dom/CrossThreadTask.h',
+ 'dom/DOMArrayBuffer.cpp',
+ 'dom/DOMArrayBuffer.h',
+ 'dom/DOMArrayBufferDeallocationObserver.cpp',
+ 'dom/DOMArrayBufferDeallocationObserver.h',
+ 'dom/DOMArrayBufferView.h',
+ 'dom/DOMArrayPiece.h',
+ 'dom/DOMDataView.cpp',
+ 'dom/DOMDataView.h',
'dom/DOMError.cpp',
'dom/DOMError.h',
'dom/DOMException.cpp',
@@ -2066,6 +2086,8 @@
'dom/DOMStringMap.h',
'dom/DOMTokenList.cpp',
'dom/DOMTokenList.h',
+ 'dom/DOMTypedArray.cpp',
+ 'dom/DOMTypedArray.h',
'dom/DOMURL.cpp',
'dom/DOMURL.h',
'dom/DOMURLUtils.cpp',
« no previous file with comments | « Source/bindings/tests/results/modules/V8TestInterface5.cpp ('k') | Source/core/css/FontFace.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698