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

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

Issue 22912004: Initial Dartium custom element support (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Mark tests fail until parser fix Created 7 years, 4 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 /// The Dart HTML library. 8 /// The Dart HTML library.
9 /// 9 ///
10 /// For examples, see 10 /// For examples, see
11 /// [Dart HTML5 Samples](https://github.com/dart-lang/dart-html5-samples) 11 /// [Dart HTML5 Samples](https://github.com/dart-lang/dart-html5-samples)
12 /// on Github. 12 /// on Github.
13 library dart.dom.html; 13 library dart.dom.html;
14 14
15 import 'dart:async'; 15 import 'dart:async';
16 import 'dart:collection'; 16 import 'dart:collection';
17 import 'dart:_collection-dev' hide Symbol, deprecated; 17 import 'dart:_collection-dev' hide Symbol, deprecated;
18 import 'dart:html_common'; 18 import 'dart:html_common';
19 import 'dart:indexed_db'; 19 import 'dart:indexed_db';
20 import 'dart:isolate'; 20 import 'dart:isolate';
21 import 'dart:json' as json; 21 import 'dart:json' as json;
22 import 'dart:math'; 22 import 'dart:math';
23 // TODO(vsm): Remove this when we can do the proper checking in
24 // native code for custom elements.
25 import 'dart:mirrors';
23 import 'dart:nativewrappers'; 26 import 'dart:nativewrappers';
24 import 'dart:typed_data'; 27 import 'dart:typed_data';
25 import 'dart:web_gl' as gl; 28 import 'dart:web_gl' as gl;
26 import 'dart:web_sql'; 29 import 'dart:web_sql';
27 // Not actually used, but imported since dart:html can generate these objects. 30 // Not actually used, but imported since dart:html can generate these objects.
28 import 'dart:svg' as svg; 31 import 'dart:svg' as svg;
29 import 'dart:web_audio' as web_audio; 32 import 'dart:web_audio' as web_audio;
30 33
31 $!GENERATED_DART_FILES 34 $!GENERATED_DART_FILES
32 35
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 _callPortLastResult = json.parse(_getPortSyncEventData(event)); 113 _callPortLastResult = json.parse(_getPortSyncEventData(event));
111 }); 114 });
112 _callPortInitialized = true; 115 _callPortInitialized = true;
113 } 116 }
114 assert(_callPortLastResult == null); 117 assert(_callPortLastResult == null);
115 _dispatchEvent('js-sync-message', {'id': id, 'message': message}); 118 _dispatchEvent('js-sync-message', {'id': id, 'message': message});
116 var result = _callPortLastResult; 119 var result = _callPortLastResult;
117 _callPortLastResult = null; 120 _callPortLastResult = null;
118 return result; 121 return result;
119 } 122 }
OLDNEW
« no previous file with comments | « tools/dom/src/native_DOMImplementation.dart ('k') | tools/dom/templates/html/impl/impl_HTMLDocument.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698