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

Unified Diff: Source/core/dom/DataView.idl

Issue 1178273002: Remove dead DataView IDL and C++ code (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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/core/dom/DOMDataView.cpp ('k') | Source/core/html/canvas/DataView.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DataView.idl
diff --git a/Source/core/dom/DataView.idl b/Source/core/dom/DataView.idl
index 2a0652cd4be6db305f790e09feb912d2fa8d07b1..3e957dfcc56a2eee989dd4dae6b5c5fe7889899d 100644
--- a/Source/core/dom/DataView.idl
+++ b/Source/core/dom/DataView.idl
@@ -29,26 +29,4 @@
ImplementedAs=DOMDataView,
TypeChecking=Interface,
] interface DataView : ArrayBufferView {
- // All these methods raise an exception if they would read or write beyond the end of the view.
-
- [RaisesException] byte getInt8(unsigned long byteOffset);
- [RaisesException] octet getUint8(unsigned long byteOffset);
-
- [RaisesException] short getInt16(unsigned long byteOffset, optional boolean littleEndian);
- [RaisesException] unsigned short getUint16(unsigned long byteOffset, optional boolean littleEndian);
- [RaisesException] long getInt32(unsigned long byteOffset, optional boolean littleEndian);
- [RaisesException] unsigned long getUint32(unsigned long byteOffset, optional boolean littleEndian);
-
- [RaisesException] float getFloat32(unsigned long byteOffset, optional boolean littleEndian);
- [RaisesException] double getFloat64(unsigned long byteOffset, optional boolean littleEndian);
-
- [RaisesException] void setInt8(unsigned long byteOffset, byte value);
- [RaisesException] void setUint8(unsigned long byteOffset, octet value);
-
- [RaisesException] void setInt16(unsigned long byteOffset, short value, optional boolean littleEndian);
- [RaisesException] void setUint16(unsigned long byteOffset, unsigned short value, optional boolean littleEndian);
- [RaisesException] void setInt32(unsigned long byteOffset, long value, optional boolean littleEndian);
- [RaisesException] void setUint32(unsigned long byteOffset, unsigned long value, optional boolean littleEndian);
- [RaisesException] void setFloat32(unsigned long byteOffset, unrestricted float value, optional boolean littleEndian);
- [RaisesException] void setFloat64(unsigned long byteOffset, unrestricted double value, optional boolean littleEndian);
};
« no previous file with comments | « Source/core/dom/DOMDataView.cpp ('k') | Source/core/html/canvas/DataView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698