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

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

Issue 10659033: Get rid of DOMWrapperBase and DOMTypeBase. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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
« no previous file with comments | « lib/dom/src/native_DOMWrapperBase.dart ('k') | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:isolate"); 10 #import("dart:isolate");
11 #import("dart:nativewrappers"); 11 #import("dart:nativewrappers");
12 12
13 $!GENERATED_DART_FILES 13 $!GENERATED_DART_FILES
14 14
15 #source('$AUXILIARY_DIR/EventListener.dart'); 15 #source('$AUXILIARY_DIR/EventListener.dart');
16 #source('$AUXILIARY_DIR/KeyLocation.dart'); 16 #source('$AUXILIARY_DIR/KeyLocation.dart');
17 #source('$AUXILIARY_DIR/KeyName.dart'); 17 #source('$AUXILIARY_DIR/KeyName.dart');
18 #source('$AUXILIARY_DIR/ReadyState.dart'); 18 #source('$AUXILIARY_DIR/ReadyState.dart');
19 #source('$AUXILIARY_DIR/_Collections.dart'); 19 #source('$AUXILIARY_DIR/_Collections.dart');
20 #source('$AUXILIARY_DIR/_XMLHttpRequestUtils.dart'); 20 #source('$AUXILIARY_DIR/_XMLHttpRequestUtils.dart');
21 #source('$AUXILIARY_DIR/../../html/src/shared_FactoryProviders.dart'); 21 #source('$AUXILIARY_DIR/../../html/src/shared_FactoryProviders.dart');
22 #source('$AUXILIARY_DIR/../../html/src/dartium_FactoryProviders.dart'); 22 #source('$AUXILIARY_DIR/../../html/src/dartium_FactoryProviders.dart');
23 #source('$AUXILIARY_DIR/../../html/src/IDBOpenDBRequest.dart'); 23 #source('$AUXILIARY_DIR/../../html/src/IDBOpenDBRequest.dart');
24 #source('$AUXILIARY_DIR/../../html/src/Measurement.dart'); 24 #source('$AUXILIARY_DIR/../../html/src/Measurement.dart');
25 #source('$AUXILIARY_DIR/../../html/src/Device.dart'); 25 #source('$AUXILIARY_DIR/../../html/src/Device.dart');
26 #source('$AUXILIARY_DIR/../../html/src/_Testing.dart'); 26 #source('$AUXILIARY_DIR/../../html/src/_Testing.dart');
27 #source('$AUXILIARY_DIR/../../html/src/_DOMTypeBase.dart');
28 #source('$AUXILIARY_DIR/_ListIterators.dart'); 27 #source('$AUXILIARY_DIR/_ListIterators.dart');
29 #source('$AUXILIARY_DIR/_Lists.dart'); 28 #source('$AUXILIARY_DIR/_Lists.dart');
30 29
31 #source('$AUXILIARY_DIR/native_DOMWrapperBase.dart');
32 #source('$AUXILIARY_DIR/native_DOMPublic.dart'); 30 #source('$AUXILIARY_DIR/native_DOMPublic.dart');
33 #source('$AUXILIARY_DIR/native_DOMImplementation.dart'); 31 #source('$AUXILIARY_DIR/native_DOMImplementation.dart');
34 32
35 Window __window; 33 Window __window;
36 34
37 Window get window() { 35 Window get window() {
38 if (__window !== null) { 36 if (__window !== null) {
39 return __window; 37 return __window;
40 } 38 }
41 __window = _Utils.window(); 39 __window = _Utils.window();
(...skipping 15 matching lines...) Expand all
57 Document get _document() => _window.document; 55 Document get _document() => _window.document;
58 56
59 Element query(String selector) => _document.query(selector); 57 Element query(String selector) => _document.query(selector);
60 ElementList queryAll(String selector) => _document.queryAll(selector); 58 ElementList queryAll(String selector) => _document.queryAll(selector);
61 59
62 class _Null { 60 class _Null {
63 const _Null(); 61 const _Null();
64 } 62 }
65 63
66 final _null = const _Null(); 64 final _null = const _Null();
OLDNEW
« no previous file with comments | « lib/dom/src/native_DOMWrapperBase.dart ('k') | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698