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

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

Issue 23533055: https://codereview.chromium.org//23754012 resulted in some changes to the generated files but (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 3 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
« no previous file with comments | « sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 library dart.dom.indexed_db; 1 library dart.dom.indexed_db;
2 2
3 import 'dart:async'; 3 import 'dart:async';
4 import 'dart:html'; 4 import 'dart:html';
5 import 'dart:html_common'; 5 import 'dart:html_common';
6 import 'dart:nativewrappers'; 6 import 'dart:nativewrappers';
7 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
8 // for details. All rights reserved. Use of this source code is governed by a 8 // for details. All rights reserved. Use of this source code is governed by a
9 // BSD-style license that can be found in the LICENSE file. 9 // BSD-style license that can be found in the LICENSE file.
10 10
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 @DocsEditable() 112 @DocsEditable()
113 Object get value native "IDBCursorWithValue_value_Getter"; 113 Object get value native "IDBCursorWithValue_value_Getter";
114 114
115 } 115 }
116 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 116 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
117 // for details. All rights reserved. Use of this source code is governed by a 117 // for details. All rights reserved. Use of this source code is governed by a
118 // BSD-style license that can be found in the LICENSE file. 118 // BSD-style license that can be found in the LICENSE file.
119 119
120 120
121 @DocsEditable() 121 @DocsEditable()
122 /**
123 * An indexed database object for storing client-side data
124 * in web apps.
125 */
122 @DomName('IDBDatabase') 126 @DomName('IDBDatabase')
123 @SupportedBrowser(SupportedBrowser.CHROME) 127 @SupportedBrowser(SupportedBrowser.CHROME)
124 @SupportedBrowser(SupportedBrowser.FIREFOX, '15') 128 @SupportedBrowser(SupportedBrowser.FIREFOX, '15')
125 @SupportedBrowser(SupportedBrowser.IE, '10') 129 @SupportedBrowser(SupportedBrowser.IE, '10')
126 @Experimental() 130 @Experimental()
127 @Unstable() 131 @Unstable()
128 class Database extends EventTarget { 132 class Database extends EventTarget {
129 @DomName('IDBDatabase.createObjectStore') 133 @DomName('IDBDatabase.createObjectStore')
130 @DocsEditable() 134 @DocsEditable()
131 ObjectStore createObjectStore(String name, 135 ObjectStore createObjectStore(String name,
(...skipping 909 matching lines...) Expand 10 before | Expand all | Expand 10 after
1041 1045
1042 // WARNING: Do not edit - generated code. 1046 // WARNING: Do not edit - generated code.
1043 1047
1044 1048
1045 @DocsEditable() 1049 @DocsEditable()
1046 @DomName('IDBAny') 1050 @DomName('IDBAny')
1047 @deprecated // nonstandard 1051 @deprecated // nonstandard
1048 abstract class _IDBAny extends NativeFieldWrapperClass1 { 1052 abstract class _IDBAny extends NativeFieldWrapperClass1 {
1049 1053
1050 } 1054 }
OLDNEW
« no previous file with comments | « sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698