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

Unified Diff: lib/html/doc/nodoc-src/_TypedArrayFactoryProvider.dart

Issue 10544064: Add dummy dart:html library for documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
Index: lib/html/doc/nodoc-src/_TypedArrayFactoryProvider.dart
diff --git a/lib/html/doc/nodoc-src/_TypedArrayFactoryProvider.dart b/lib/html/doc/nodoc-src/_TypedArrayFactoryProvider.dart
new file mode 100644
index 0000000000000000000000000000000000000000..361220a937b85425c3afe13cfa716210d31abbd0
--- /dev/null
+++ b/lib/html/doc/nodoc-src/_TypedArrayFactoryProvider.dart
@@ -0,0 +1,51 @@
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+class _TypedArrayFactoryProvider {
+
+ factory Float32Array(int length) => null;
+ factory Float32Array.fromList(List<num> list) => null;
+ factory Float32Array.fromBuffer(
+ ArrayBuffer buffer, [int byteOffset = 0, int length]) => null;
+
+ factory Float64Array(int length) => null;
+ factory Float64Array.fromList(List<num> list) => null;
+ factory Float64Array.fromBuffer(
+ ArrayBuffer buffer, [int byteOffset = 0, int length]) => null;
+
+ factory Int8Array(int length) => null;
+ factory Int8Array.fromList(List<num> list) => null;
+ factory Int8Array.fromBuffer(
+ ArrayBuffer buffer, [int byteOffset = 0, int length]) => null;
+
+ factory Int16Array(int length) => null;
+ factory Int16Array.fromList(List<num> list) => null;
+ factory Int16Array.fromBuffer(
+ ArrayBuffer buffer, [int byteOffset = 0, int length]) => null;
+
+ factory Int32Array(int length) => null;
+ factory Int32Array.fromList(List<num> list) => null;
+ factory Int32Array.fromBuffer(
+ ArrayBuffer buffer, [int byteOffset = 0, int length]) => null;
+
+ factory Uint8Array(int length) => null;
+ factory Uint8Array.fromList(List<num> list) => null;
+ factory Uint8Array.fromBuffer(
+ ArrayBuffer buffer, [int byteOffset = 0, int length]) => null;
+
+ factory Uint16Array(int length) => null;
+ factory Uint16Array.fromList(List<num> list) => null;
+ factory Uint16Array.fromBuffer(
+ ArrayBuffer buffer, [int byteOffset = 0, int length]) => null;
+
+ factory Uint32Array(int length) => null;
+ factory Uint32Array.fromList(List<num> list) => null;
+ factory Uint32Array.fromBuffer(
+ ArrayBuffer buffer, [int byteOffset = 0, int length]) => null;
+
+ factory Uint8ClampedArray(int length) => null;
+ factory Uint8ClampedArray.fromList(List<num> list) => null;
+ factory Uint8ClampedArray.fromBuffer(
+ ArrayBuffer buffer, [int byteOffset = 0, int length]) => null;
+}
« no previous file with comments | « lib/html/doc/nodoc-src/_TextTrackCueFactoryProvider.dart ('k') | lib/html/doc/nodoc-src/_WorkerFactoryProvider.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698