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

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

Issue 288873002: "Reverting 36191" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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 | « tools/dom/templates/html/dart2js/html_dart2js.darttemplate ('k') | no next file » | 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 /** 8 /**
9 * HTML elements and other resources for web-based applications that need to 9 * HTML elements and other resources for web-based applications that need to
10 * interact with the browser and the DOM (Document Object Model). 10 * interact with the browser and the DOM (Document Object Model).
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 import 'dart:web_audio' as web_audio; 54 import 'dart:web_audio' as web_audio;
55 $if DART_USE_BLINK 55 $if DART_USE_BLINK
56 import 'dart:_blink' as _blink; 56 import 'dart:_blink' as _blink;
57 $endif 57 $endif
58 58
59 export 'dart:math' show Rectangle, Point; 59 export 'dart:math' show Rectangle, Point;
60 60
61 $!GENERATED_DART_FILES 61 $!GENERATED_DART_FILES
62 62
63 // Issue 14721, order important for WrappedEvent. 63 // Issue 14721, order important for WrappedEvent.
64 part '$AUXILIARY_DIR/WrappedEvent.dart';
64 part '$AUXILIARY_DIR/AttributeMap.dart'; 65 part '$AUXILIARY_DIR/AttributeMap.dart';
65 part '$AUXILIARY_DIR/CanvasImageSource.dart'; 66 part '$AUXILIARY_DIR/CanvasImageSource.dart';
66 part '$AUXILIARY_DIR/CrossFrameTypes.dart'; 67 part '$AUXILIARY_DIR/CrossFrameTypes.dart';
67 part '$AUXILIARY_DIR/CssClassSet.dart'; 68 part '$AUXILIARY_DIR/CssClassSet.dart';
68 part '$AUXILIARY_DIR/CssRectangle.dart'; 69 part '$AUXILIARY_DIR/CssRectangle.dart';
69 part '$AUXILIARY_DIR/Dimension.dart'; 70 part '$AUXILIARY_DIR/Dimension.dart';
70 part '$AUXILIARY_DIR/EventListener.dart'; 71 part '$AUXILIARY_DIR/EventListener.dart';
71 part '$AUXILIARY_DIR/EventStreamProvider.dart'; 72 part '$AUXILIARY_DIR/EventStreamProvider.dart';
72 part '$AUXILIARY_DIR/Html5NodeValidator.dart'; 73 part '$AUXILIARY_DIR/Html5NodeValidator.dart';
73 part '$AUXILIARY_DIR/ImmutableListMixin.dart'; 74 part '$AUXILIARY_DIR/ImmutableListMixin.dart';
74 part '$AUXILIARY_DIR/KeyCode.dart'; 75 part '$AUXILIARY_DIR/KeyCode.dart';
75 part '$AUXILIARY_DIR/KeyLocation.dart'; 76 part '$AUXILIARY_DIR/KeyLocation.dart';
76 part '$AUXILIARY_DIR/KeyName.dart'; 77 part '$AUXILIARY_DIR/KeyName.dart';
77 part '$AUXILIARY_DIR/KeyboardEventStream.dart'; 78 part '$AUXILIARY_DIR/KeyboardEventStream.dart';
78 part '$AUXILIARY_DIR/NodeValidatorBuilder.dart'; 79 part '$AUXILIARY_DIR/NodeValidatorBuilder.dart';
79 part '$AUXILIARY_DIR/ReadyState.dart'; 80 part '$AUXILIARY_DIR/ReadyState.dart';
80 part '$AUXILIARY_DIR/Validators.dart'; 81 part '$AUXILIARY_DIR/Validators.dart';
81 part '$AUXILIARY_DIR/WrappedList.dart'; 82 part '$AUXILIARY_DIR/WrappedList.dart';
82 part '$AUXILIARY_DIR/_HttpRequestUtils.dart'; 83 part '$AUXILIARY_DIR/_HttpRequestUtils.dart';
83 part '$AUXILIARY_DIR/_ListIterators.dart'; 84 part '$AUXILIARY_DIR/_ListIterators.dart';
84 part '$AUXILIARY_DIR/dartium_CustomElementSupport.dart'; 85 part '$AUXILIARY_DIR/dartium_CustomElementSupport.dart';
85 part '$AUXILIARY_DIR/dartium_KeyEvent.dart'; 86 part '$AUXILIARY_DIR/dartium_KeyEvent.dart';
86 part '$AUXILIARY_DIR/dartium_Platform.dart'; 87 part '$AUXILIARY_DIR/dartium_Platform.dart';
87 part '$AUXILIARY_DIR/dartium_WrappedEvent.dart';
88 part '$AUXILIARY_DIR/shared_html.dart'; 88 part '$AUXILIARY_DIR/shared_html.dart';
89 89
90 $if DART_USE_BLINK 90 $if DART_USE_BLINK
91 part '$AUXILIARY_DIR/html_native_DOMImplementation.dart'; 91 part '$AUXILIARY_DIR/html_native_DOMImplementation.dart';
92 $else 92 $else
93 part '$AUXILIARY_DIR/native_DOMImplementation.dart'; 93 part '$AUXILIARY_DIR/native_DOMImplementation.dart';
94 $endif 94 $endif
95 95
96 Window _window; 96 Window _window;
97 97
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 '_LocationCrossFrame': _LocationCrossFrame, 147 '_LocationCrossFrame': _LocationCrossFrame,
148 '_DOMWindowCrossFrame': _DOMWindowCrossFrame, 148 '_DOMWindowCrossFrame': _DOMWindowCrossFrame,
149 // FIXME: Move these to better locations. 149 // FIXME: Move these to better locations.
150 'DateTime': DateTime, 150 'DateTime': DateTime,
151 'JsObject': js.JsObject, 151 'JsObject': js.JsObject,
152 'JsFunction': js.JsFunction, 152 'JsFunction': js.JsFunction,
153 'JsArray': js.JsArray, 153 'JsArray': js.JsArray,
154 $!TYPE_MAP 154 $!TYPE_MAP
155 }; 155 };
156 $endif 156 $endif
OLDNEW
« no previous file with comments | « tools/dom/templates/html/dart2js/html_dart2js.darttemplate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698