| Index: lib/html/dart2js/html_dart2js.dart
|
| diff --git a/lib/html/dart2js/html_dart2js.dart b/lib/html/dart2js/html_dart2js.dart
|
| index 9f0b1359d7737b291a725760cd9e7dc6fb0e92bb..61538d6394e5e55b72ab089fdd6f9ca04b1d8266 100644
|
| --- a/lib/html/dart2js/html_dart2js.dart
|
| +++ b/lib/html/dart2js/html_dart2js.dart
|
| @@ -37703,33 +37703,6 @@ class _IDBKeyRangeFactoryProvider {
|
| '''return cls.bound(lower, upper, lowerOpen, upperOpen);''';
|
|
|
| }
|
| -// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -// IDBOpenDBRequest. IDBFactory.open returns a plain IDBRequest on Chrome and
|
| -// Dartium but an IDBOpenDBRequest on Firefox. Chrome/Dartium is expected to
|
| -// change at some point as IDBOpenDBRequest is more standard. When it appears
|
| -// in the WebKit IDL we can remove this hand-written file.
|
| -//
|
| -// See:
|
| -// http://www.w3.org/TR/IndexedDB/#request-api
|
| -// http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html#request-api
|
| -
|
| -class _IDBOpenDBRequestImpl extends _IDBRequestImpl implements IDBOpenDBRequest
|
| - native "*IDBOpenDBRequest" {
|
| -
|
| - _IDBOpenDBRequestEventsImpl get on() =>
|
| - new _IDBOpenDBRequestEventsImpl(this);
|
| -}
|
| -
|
| -class _IDBOpenDBRequestEventsImpl extends _IDBRequestEventsImpl implements IDBOpenDBRequestEvents {
|
| - _IDBOpenDBRequestEventsImpl(_ptr) : super(_ptr);
|
| -
|
| - EventListenerList get blocked() => _get('blocked');
|
| -
|
| - EventListenerList get upgradeneeded() => _get('upgradeneeded');
|
| -}
|
| // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|