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

Side by Side Diff: client/html/generated/src/wrapping/_IDBRequestWrappingImplementation.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
(Empty)
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING: Do not edit - generated code.
6
7 class IDBRequestWrappingImplementation extends DOMWrapperBase implements IDBRequ est {
8 IDBRequestWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
9
10 int get errorCode() { return _ptr.errorCode; }
11
12 int get readyState() { return _ptr.readyState; }
13
14 IDBAny get result() { return LevelDom.wrapIDBAny(_ptr.result); }
15
16 IDBAny get source() { return LevelDom.wrapIDBAny(_ptr.source); }
17
18 IDBTransaction get transaction() { return LevelDom.wrapIDBTransaction(_ptr.tra nsaction); }
19
20 String get webkitErrorMessage() { return _ptr.webkitErrorMessage; }
21
22 void addEventListener(String type, EventListener listener, [bool useCapture]) {
23 if (useCapture === null) {
24 _ptr.addEventListener(type, LevelDom.unwrap(listener));
25 return;
26 } else {
27 _ptr.addEventListener(type, LevelDom.unwrap(listener), useCapture);
28 return;
29 }
30 }
31
32 bool dispatchEvent(Event evt) {
33 return _ptr.dispatchEvent(LevelDom.unwrap(evt));
34 }
35
36 void removeEventListener(String type, EventListener listener, [bool useCapture ]) {
37 if (useCapture === null) {
38 _ptr.removeEventListener(type, LevelDom.unwrap(listener));
39 return;
40 } else {
41 _ptr.removeEventListener(type, LevelDom.unwrap(listener), useCapture);
42 return;
43 }
44 }
45 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698