OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 part of $LIBRARYNAME; | 5 part of $LIBRARYNAME; |
6 | 6 $ANNOTATIONS |
7 /// @domName $DOMNAME$ANNOTATIONS | |
8 class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC { | 7 class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC { |
9 /** | 8 /** |
10 * Checks to see if Indexed DB is supported on the current platform. | 9 * Checks to see if Indexed DB is supported on the current platform. |
11 */ | 10 */ |
12 static bool get supported { | 11 static bool get supported { |
13 $if DARTIUM | 12 $if DARTIUM |
14 return true; | 13 return true; |
15 $else | 14 $else |
16 return JS('bool', | 15 return JS('bool', |
17 '!!(window.indexedDB || ' | 16 '!!(window.indexedDB || ' |
18 'window.webkitIndexedDB || ' | 17 'window.webkitIndexedDB || ' |
19 'window.mozIndexedDB)'); | 18 'window.mozIndexedDB)'); |
20 $endif | 19 $endif |
21 } | 20 } |
22 | 21 |
23 $!MEMBERS | 22 $!MEMBERS |
24 } | 23 } |
OLD | NEW |