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

Side by Side Diff: lib/dom/dom.dart

Issue 10540016: indexedDB work (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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #library('dom'); 1 #library('dom');
2 2
3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4 // for details. All rights reserved. Use of this source code is governed by a 4 // for details. All rights reserved. Use of this source code is governed by a
5 // BSD-style license that can be found in the LICENSE file. 5 // BSD-style license that can be found in the LICENSE file.
6 6
7 // DO NOT EDIT 7 // DO NOT EDIT
8 // Auto-generated Dart DOM library with no implementation. 8 // Auto-generated Dart DOM library with no implementation.
9 9
10 10
(...skipping 5108 matching lines...) Expand 10 before | Expand all | Expand 10 after
5119 IDBObjectStore createObjectStore(String name, [Map options]); 5119 IDBObjectStore createObjectStore(String name, [Map options]);
5120 5120
5121 void deleteObjectStore(String name); 5121 void deleteObjectStore(String name);
5122 5122
5123 bool dispatchEvent(Event evt); 5123 bool dispatchEvent(Event evt);
5124 5124
5125 void removeEventListener(String type, EventListener listener, [bool useCapture ]); 5125 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
5126 5126
5127 IDBVersionChangeRequest setVersion(String version); 5127 IDBVersionChangeRequest setVersion(String version);
5128 5128
5129 IDBTransaction transaction(storeName_OR_storeNames, mode); 5129 IDBTransaction transaction(storeName_OR_storeNames, String mode);
5130 } 5130 }
5131 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5131 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5132 // for details. All rights reserved. Use of this source code is governed by a 5132 // for details. All rights reserved. Use of this source code is governed by a
5133 // BSD-style license that can be found in the LICENSE file. 5133 // BSD-style license that can be found in the LICENSE file.
5134 5134
5135 // WARNING: Do not edit - generated code. 5135 // WARNING: Do not edit - generated code.
5136 5136
5137 interface IDBDatabaseException { 5137 interface IDBDatabaseException {
5138 5138
5139 static final int ABORT_ERR = 20; 5139 static final int ABORT_ERR = 20;
(...skipping 7837 matching lines...) Expand 10 before | Expand all | Expand 10 after
12977 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12977 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12978 // for details. All rights reserved. Use of this source code is governed by a 12978 // for details. All rights reserved. Use of this source code is governed by a
12979 // BSD-style license that can be found in the LICENSE file. 12979 // BSD-style license that can be found in the LICENSE file.
12980 12980
12981 Window get window() => _dummy(); 12981 Window get window() => _dummy();
12982 12982
12983 // TODO(vsm): Remove when prefixes are supported. 12983 // TODO(vsm): Remove when prefixes are supported.
12984 Window get dom_window() => _dummy(); 12984 Window get dom_window() => _dummy();
12985 12985
12986 Document get document() => _dummy(); 12986 Document get document() => _dummy();
OLDNEW
« no previous file with comments | « no previous file | lib/dom/frog/dom_frog.dart » ('j') | lib/dom/templates/html/frog/impl_IDBDatabase.darttemplate » ('J')

Powered by Google App Engine
This is Rietveld 408576698