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

Unified Diff: Source/WebCore/html/canvas/Float64Array.idl

Issue 9231022: WebGL support. (Closed) Base URL: svn://svn.chromium.org/multivm/trunk/webkit
Patch Set: Created 8 years, 11 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
Index: Source/WebCore/html/canvas/Float64Array.idl
diff --git a/Source/WebCore/html/canvas/Float64Array.idl b/Source/WebCore/html/canvas/Float64Array.idl
index 01495350b2addca17ccb54714bdd96421c7c5efe..f82302f239f6acbfdda7fc8abfe2365ee89aab6f 100644
--- a/Source/WebCore/html/canvas/Float64Array.idl
+++ b/Source/WebCore/html/canvas/Float64Array.idl
@@ -37,11 +37,15 @@ module html {
const unsigned int BYTES_PER_ELEMENT = 8;
readonly attribute unsigned long length;
- Float64Array subarray(in [Optional=CallWithDefaultValue] long start,
+ Float64Array subarray(in [Optional=CallWithDefaultValue] long start,
in [Optional] long end);
// void set(in Float64Array array, [Optional] in unsigned long offset);
// void set(in sequence<long> array, [Optional] in unsigned long offset);
+#if (defined(LANGUAGE_DART) && LANGUAGE_DART)
+ [Custom] void set(in any array, [Optional] in unsigned long offset);
+#else
[Custom] void set();
+#endif
};
}

Powered by Google App Engine
This is Rietveld 408576698