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

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

Issue 11757002: Fixing ArrayBuffer et al on IE. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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/html/dartium/html_dartium.dart ('k') | tests/html/html.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 105
106 } 106 }
107 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 107 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
108 // for details. All rights reserved. Use of this source code is governed by a 108 // for details. All rights reserved. Use of this source code is governed by a
109 // BSD-style license that can be found in the LICENSE file. 109 // BSD-style license that can be found in the LICENSE file.
110 110
111 // WARNING: Do not edit - generated code. 111 // WARNING: Do not edit - generated code.
112 112
113 113
114 /// @domName IDBDatabase 114 /// @domName IDBDatabase
115 @SupportedBrowser(SupportedBrowser.CHROME)
116 @SupportedBrowser(SupportedBrowser.FIREFOX, '15')
117 @SupportedBrowser(SupportedBrowser.IE, '10')
118 @Experimental()
115 class Database extends EventTarget { 119 class Database extends EventTarget {
116 Database.internal() : super.internal(); 120 Database.internal() : super.internal();
117 121
118 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev entTarget.dispatchEvent; @docsEditable true 122 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev entTarget.dispatchEvent; @docsEditable true
119 DatabaseEvents get on => 123 DatabaseEvents get on =>
120 new DatabaseEvents(this); 124 new DatabaseEvents(this);
121 125
122 126
123 /** @domName IDBDatabase.name */ 127 /** @domName IDBDatabase.name */
124 String get name native "IDBDatabase_name_Getter"; 128 String get name native "IDBDatabase_name_Getter";
(...skipping 827 matching lines...) Expand 10 before | Expand all | Expand 10 after
952 // BSD-style license that can be found in the LICENSE file. 956 // BSD-style license that can be found in the LICENSE file.
953 957
954 // WARNING: Do not edit - generated code. 958 // WARNING: Do not edit - generated code.
955 959
956 960
957 /// @domName IDBAny 961 /// @domName IDBAny
958 class _Any extends NativeFieldWrapperClass1 { 962 class _Any extends NativeFieldWrapperClass1 {
959 _Any.internal(); 963 _Any.internal();
960 964
961 } 965 }
OLDNEW
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | tests/html/html.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698