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

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

Issue 9231022: WebGL support. (Closed) Base URL: svn://svn.chromium.org/multivm/trunk/webkit
Patch Set: Review feedback. 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/Int16Array.idl
diff --git a/Source/WebCore/html/canvas/Int16Array.idl b/Source/WebCore/html/canvas/Int16Array.idl
index b1a547180a9db2fda4d5bf3e066d0da62510e41d..4538ac9b7f22e467eb7196956570c3852fdd4790 100644
--- a/Source/WebCore/html/canvas/Int16Array.idl
+++ b/Source/WebCore/html/canvas/Int16Array.idl
@@ -36,11 +36,15 @@ module html {
const unsigned int BYTES_PER_ELEMENT = 2;
readonly attribute unsigned long length;
- Int16Array subarray(in [Optional=CallWithDefaultValue] long start,
+ Int16Array subarray(in [Optional=CallWithDefaultValue] long start,
antonm 2012/01/19 14:05:49 ditto
Nikolay 2012/01/19 15:08:46 Done.
in [Optional] long end);
// void set(in Int16Array 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