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

Unified Diff: lib/html/src/frog_IDBOpenDBRequestImplementation.dart

Issue 10800104: Convert DOM and HTML frog to dart2js. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/html/src/frog_IDBKeyRangeFactoryProvider.dart ('k') | lib/html/src/frog_LocationWrapper.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/src/frog_IDBOpenDBRequestImplementation.dart
===================================================================
--- lib/html/src/frog_IDBOpenDBRequestImplementation.dart (revision 9862)
+++ lib/html/src/frog_IDBOpenDBRequestImplementation.dart (working copy)
@@ -1,27 +0,0 @@
-// 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');
-}
« no previous file with comments | « lib/html/src/frog_IDBKeyRangeFactoryProvider.dart ('k') | lib/html/src/frog_LocationWrapper.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698