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

Side by Side Diff: client/dom/templates/html/dartium/html_dartium.darttemplate

Issue 9464002: Implement automatically generated constructors for frog and dartium dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: address code review comments 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
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 // DO NOT EDIT 5 // DO NOT EDIT
6 // Auto-generated dart:html library. 6 // Auto-generated dart:html library.
7 7
8 #library("html"); 8 #library("html");
9 9
10 #import('dart:dom', prefix:'dom'); 10 #import('dart:dom', prefix:'dom');
11 11
12 $!GENERATED_DART_FILES 12 $!GENERATED_DART_FILES
13 13
14 #source('../dom/src/EventListener.dart'); 14 #source('../dom/src/EventListener.dart');
15 #source('../dom/src/KeyLocation.dart'); 15 #source('../dom/src/KeyLocation.dart');
16 #source('../dom/src/KeyName.dart'); 16 #source('../dom/src/KeyName.dart');
17 #source('../dom/src/ReadyState.dart'); 17 #source('../dom/src/ReadyState.dart');
18 #source('../dom/src/TimeoutHandler.dart'); 18 #source('../dom/src/TimeoutHandler.dart');
19 #source('../dom/src/_Collections.dart'); 19 #source('../dom/src/_Collections.dart');
20 #source('../dom/src/_XMLHttpRequestUtils.dart');
20 #source('../html/src/shared_FactoryProviders.dart'); 21 #source('../html/src/shared_FactoryProviders.dart');
21 #source('../html/src/dartium_FactoryProviders.dart'); 22 #source('../html/src/dartium_FactoryProviders.dart');
22 #source('../html/src/Measurement.dart'); 23 #source('../html/src/Measurement.dart');
23 #source('../html/src/Device.dart'); 24 #source('../html/src/Device.dart');
24 #source('../html/src/_Testing.dart'); 25 #source('../html/src/_Testing.dart');
25 #source('../html/src/_DOMTypeBase.dart'); 26 #source('../html/src/_DOMTypeBase.dart');
26 #source('../dom/src/_ListIterators.dart'); 27 #source('../dom/src/_ListIterators.dart');
27 #source('../dom/src/_Lists.dart'); 28 #source('../dom/src/_Lists.dart');
28 29
29 _WindowImpl __window; 30 _WindowImpl __window;
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 switch(domObject.typeName) { 76 switch(domObject.typeName) {
76 case 'HTMLDocument': 77 case 'HTMLDocument':
77 throw 'A document should never be wrapped directly. TODO(jacobr) XXX'; 78 throw 'A document should never be wrapped directly. TODO(jacobr) XXX';
78 case 'HTMLHtmlElement': 79 case 'HTMLHtmlElement':
79 return new _DocumentImpl._wrap(domObject); 80 return new _DocumentImpl._wrap(domObject);
80 $WRAPCASES 81 $WRAPCASES
81 default: 82 default:
82 throw 'Unrecognized object $domObject. Name=${domObject.typeName}'; 83 throw 'Unrecognized object $domObject. Name=${domObject.typeName}';
83 } 84 }
84 } 85 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698