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

Side by Side Diff: sdk/lib/indexed_db/dartium/indexed_db_dartium.dart

Issue 11679007: Adding support checks for partially supported element types and updating tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Removing duplicated contentelement_test. Created 7 years, 12 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 library indexed_db; 1 library indexed_db;
2 2
3 import 'dart:html'; 3 import 'dart:html';
4 import 'dart:html_common'; 4 import 'dart:html_common';
5 import 'dart:nativewrappers'; 5 import 'dart:nativewrappers';
6 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7 // for details. All rights reserved. Use of this source code is governed by a 7 // for details. All rights reserved. Use of this source code is governed by a
8 // BSD-style license that can be found in the LICENSE file. 8 // BSD-style license that can be found in the LICENSE file.
9 9
10 // DO NOT EDIT 10 // DO NOT EDIT
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 195
196 /// @docsEditable true 196 /// @docsEditable true
197 EventListenerList get versionChange => this['versionchange']; 197 EventListenerList get versionChange => this['versionchange'];
198 } 198 }
199 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 199 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
200 // for details. All rights reserved. Use of this source code is governed by a 200 // for details. All rights reserved. Use of this source code is governed by a
201 // BSD-style license that can be found in the LICENSE file. 201 // BSD-style license that can be found in the LICENSE file.
202 202
203 203
204 /// @domName IDBFactory 204 /// @domName IDBFactory
205 @SupportedBrowser(SupportedBrowser.CHROME, '23.0') 205 @SupportedBrowser(SupportedBrowser.CHROME)
206 @SupportedBrowser(SupportedBrowser.FIREFOX, '15.0') 206 @SupportedBrowser(SupportedBrowser.FIREFOX, '15')
207 @SupportedBrowser(SupportedBrowser.IE, '10.0') 207 @SupportedBrowser(SupportedBrowser.IE, '10')
208 @Experimental() 208 @Experimental()
209 class IdbFactory extends NativeFieldWrapperClass1 { 209 class IdbFactory extends NativeFieldWrapperClass1 {
210 /** 210 /**
211 * Checks to see if Indexed DB is supported on the current platform. 211 * Checks to see if Indexed DB is supported on the current platform.
212 */ 212 */
213 static bool get supported { 213 static bool get supported {
214 return true; 214 return true;
215 } 215 }
216 216
217 IdbFactory.internal(); 217 IdbFactory.internal();
(...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after
940 // BSD-style license that can be found in the LICENSE file. 940 // BSD-style license that can be found in the LICENSE file.
941 941
942 // WARNING: Do not edit - generated code. 942 // WARNING: Do not edit - generated code.
943 943
944 944
945 /// @domName IDBAny 945 /// @domName IDBAny
946 class _Any extends NativeFieldWrapperClass1 { 946 class _Any extends NativeFieldWrapperClass1 {
947 _Any.internal(); 947 _Any.internal();
948 948
949 } 949 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698