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

Unified Diff: Source/core/html/canvas/ArrayBuffer.idl

Issue 18316003: Revert "Use V8 implementation of ArrayBuffer in Blink." (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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/core.gypi ('k') | Source/wtf/ArrayBuffer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/canvas/ArrayBuffer.idl
diff --git a/Source/core/page/WebKitPoint.idl b/Source/core/html/canvas/ArrayBuffer.idl
similarity index 86%
copy from Source/core/page/WebKitPoint.idl
copy to Source/core/html/canvas/ArrayBuffer.idl
index 6ac44cd16c319425e20c8783a02018b4c4b225dc..781bd900f8a39a80ad1cebcc81ed63b82a4e75be 100644
--- a/Source/core/page/WebKitPoint.idl
+++ b/Source/core/html/canvas/ArrayBuffer.idl
@@ -24,11 +24,10 @@
*/
[
- CustomConstructor,
- CustomConstructor(float x, float y),
- ImplementedAs=DOMPoint
-] interface WebKitPoint {
- attribute float x;
- attribute float y;
+ GlobalContext=Window&WorkerGlobalScope,
+ CustomConstructor(unsigned long length)
+] interface ArrayBuffer {
+ readonly attribute unsigned long byteLength;
+ ArrayBuffer slice(long begin, optional long end);
};
« no previous file with comments | « Source/core/core.gypi ('k') | Source/wtf/ArrayBuffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698