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

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

Issue 206673003: Update dart:html/svg/etc files to reflect chrome34 idl changes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: ready to review Created 6 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
« 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 // TODO(vsm): Remove this when we can do the proper checking in 42 // TODO(vsm): Remove this when we can do the proper checking in
43 // native code for custom elements. 43 // native code for custom elements.
44 import 'dart:mirrors'; 44 import 'dart:mirrors';
45 import 'dart:nativewrappers'; 45 import 'dart:nativewrappers';
46 import 'dart:typed_data'; 46 import 'dart:typed_data';
47 import 'dart:web_gl' as gl; 47 import 'dart:web_gl' as gl;
48 import 'dart:web_sql'; 48 import 'dart:web_sql';
49 // Not actually used, but imported since dart:html can generate these objects. 49 // Not actually used, but imported since dart:html can generate these objects.
50 import 'dart:svg' as svg; 50 import 'dart:svg' as svg;
51 import 'dart:svg' show Matrix; 51 import 'dart:svg' show Matrix;
52 import 'dart:svg' show SvgSvgElement;
52 import 'dart:web_audio' as web_audio; 53 import 'dart:web_audio' as web_audio;
53 54
54 export 'dart:math' show Rectangle, Point; 55 export 'dart:math' show Rectangle, Point;
55 56
56 $!GENERATED_DART_FILES 57 $!GENERATED_DART_FILES
57 58
58 // Issue 14721, order important for WrappedEvent. 59 // Issue 14721, order important for WrappedEvent.
59 part '$AUXILIARY_DIR/WrappedEvent.dart'; 60 part '$AUXILIARY_DIR/WrappedEvent.dart';
60 part '$AUXILIARY_DIR/AttributeMap.dart'; 61 part '$AUXILIARY_DIR/AttributeMap.dart';
61 part '$AUXILIARY_DIR/CanvasImageSource.dart'; 62 part '$AUXILIARY_DIR/CanvasImageSource.dart';
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 /** 112 /**
112 * Root node for all content in a web page. 113 * Root node for all content in a web page.
113 */ 114 */
114 HtmlDocument get document { 115 HtmlDocument get document {
115 if (_document != null) { 116 if (_document != null) {
116 return _document; 117 return _document;
117 } 118 }
118 _document = window.document; 119 _document = window.document;
119 return _document; 120 return _document;
120 } 121 }
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