| Index: tools/dom/src/dartium_Platform.dart
|
| diff --git a/tools/dom/src/dartium_Platform.dart b/tools/dom/src/dartium_Platform.dart
|
| index 1db313dca8b04f67137e1dd7bc5eb6ba4bfbae3e..a851ccab25689859275adf32f88548bedd459f39 100644
|
| --- a/tools/dom/src/dartium_Platform.dart
|
| +++ b/tools/dom/src/dartium_Platform.dart
|
| @@ -5,5 +5,17 @@
|
| part of html;
|
|
|
| class Platform {
|
| + /**
|
| + * Returns true if dart:typed_data types are supported on this
|
| + * browser. If false, using these types will generate a runtime
|
| + * error.
|
| + */
|
| static final supportsTypedData = true;
|
| +
|
| + /**
|
| + * Returns true if SIMD types in dart:typed_data types are supported
|
| + * on this browser. If false, using these types will generate a runtime
|
| + * error.
|
| + */
|
| + static final supportsSimd = true;
|
| }
|
|
|