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

Unified Diff: html/canvas/DataView.idl

Issue 14107003: Update WebKit IDLs after chrome roll. (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: reupload again. Created 7 years, 8 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 | « html/canvas/CanvasRenderingContext.idl ('k') | html/canvas/EXTDrawBuffers.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: html/canvas/DataView.idl
diff --git a/html/canvas/DataView.idl b/html/canvas/DataView.idl
index 60f8fa77cf23fb14dc8b5ed711eeb47226eda4e7..ce5aef4c45ce499ee80324fe1ebfb0022f76f28d 100644
--- a/html/canvas/DataView.idl
+++ b/html/canvas/DataView.idl
@@ -26,8 +26,7 @@
[
CustomConstructor,
ConstructorParameters=3,
- CustomToJSObject,
- JSNoStaticTables
+ CustomToJSObject
] interface DataView : ArrayBufferView {
// All these methods raise an exception if they would read or write beyond the end of the view.
@@ -49,9 +48,9 @@
raises (DOMException);
// Use custom code to handle NaN case for JSC.
- [JSCustom, StrictTypeChecking] float getFloat32(in unsigned long byteOffset, in [Optional] boolean littleEndian)
+ [StrictTypeChecking] float getFloat32(in unsigned long byteOffset, in [Optional] boolean littleEndian)
raises (DOMException);
- [JSCustom, StrictTypeChecking] double getFloat64(in unsigned long byteOffset, in [Optional] boolean littleEndian)
+ [StrictTypeChecking] double getFloat64(in unsigned long byteOffset, in [Optional] boolean littleEndian)
raises (DOMException);
// We have to use custom code because our code generator does not support uint8_t type.
« no previous file with comments | « html/canvas/CanvasRenderingContext.idl ('k') | html/canvas/EXTDrawBuffers.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698