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

Side by Side Diff: client/dom/generated/src/wrapping/_WorkerContextWrappingImplementation.dart

Issue 8894029: Generate EventListener attributes of non-EventTarget classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 9 years 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 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 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 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 class _WorkerContextWrappingImplementation extends DOMWrapperBase implements Wor kerContext { 7 class _WorkerContextWrappingImplementation extends DOMWrapperBase implements Wor kerContext {
8 _WorkerContextWrappingImplementation() : super() {} 8 _WorkerContextWrappingImplementation() : super() {}
9 9
10 static create__WorkerContextWrappingImplementation() native { 10 static create__WorkerContextWrappingImplementation() native {
11 return new _WorkerContextWrappingImplementation(); 11 return new _WorkerContextWrappingImplementation();
12 } 12 }
13 13
14 WorkerLocation get location() { return _get_location(this); } 14 WorkerLocation get location() { return _get_location(this); }
15 static WorkerLocation _get_location(var _this) native; 15 static WorkerLocation _get_location(var _this) native;
16 16
17 void set location(WorkerLocation value) { _set_location(this, value); } 17 void set location(WorkerLocation value) { _set_location(this, value); }
18 static void _set_location(var _this, WorkerLocation value) native; 18 static void _set_location(var _this, WorkerLocation value) native;
19 19
20 WorkerNavigator get navigator() { return _get_navigator(this); } 20 WorkerNavigator get navigator() { return _get_navigator(this); }
21 static WorkerNavigator _get_navigator(var _this) native; 21 static WorkerNavigator _get_navigator(var _this) native;
22 22
23 void set navigator(WorkerNavigator value) { _set_navigator(this, value); } 23 void set navigator(WorkerNavigator value) { _set_navigator(this, value); }
24 static void _set_navigator(var _this, WorkerNavigator value) native; 24 static void _set_navigator(var _this, WorkerNavigator value) native;
25 25
26 EventListener get onerror() { return _get_onerror(this); }
27 static EventListener _get_onerror(var _this) native;
28
29 void set onerror(EventListener value) { _set_onerror(this, value); }
30 static void _set_onerror(var _this, EventListener value) native;
31
26 WorkerContext get self() { return _get_self(this); } 32 WorkerContext get self() { return _get_self(this); }
27 static WorkerContext _get_self(var _this) native; 33 static WorkerContext _get_self(var _this) native;
28 34
29 void set self(WorkerContext value) { _set_self(this, value); } 35 void set self(WorkerContext value) { _set_self(this, value); }
30 static void _set_self(var _this, WorkerContext value) native; 36 static void _set_self(var _this, WorkerContext value) native;
31 37
32 NotificationCenter get webkitNotifications() { return _get_webkitNotifications (this); } 38 NotificationCenter get webkitNotifications() { return _get_webkitNotifications (this); }
33 static NotificationCenter _get_webkitNotifications(var _this) native; 39 static NotificationCenter _get_webkitNotifications(var _this) native;
34 40
35 DOMURL get webkitURL() { return _get_webkitURL(this); } 41 DOMURL get webkitURL() { return _get_webkitURL(this); }
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 } 171 }
166 } 172 }
167 throw "Incorrect number or type of arguments"; 173 throw "Incorrect number or type of arguments";
168 } 174 }
169 static void _webkitResolveLocalFileSystemURL(receiver, url) native; 175 static void _webkitResolveLocalFileSystemURL(receiver, url) native;
170 static void _webkitResolveLocalFileSystemURL_2(receiver, url, successCallback) native; 176 static void _webkitResolveLocalFileSystemURL_2(receiver, url, successCallback) native;
171 static void _webkitResolveLocalFileSystemURL_3(receiver, url, successCallback, errorCallback) native; 177 static void _webkitResolveLocalFileSystemURL_3(receiver, url, successCallback, errorCallback) native;
172 178
173 String get typeName() { return "WorkerContext"; } 179 String get typeName() { return "WorkerContext"; }
174 } 180 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698