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

Side by Side Diff: tools/dom/templates/html/dart2js/html_dart2js.darttemplate

Issue 1054863002: CssClassSet upgrade (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix webcomponents test, IE toggle. Created 5 years, 8 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 - unless you are editing documentation as per: 5 // DO NOT EDIT - unless you are editing documentation as per:
6 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation 6 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation
7 // Auto-generated dart:html library. 7 // Auto-generated dart:html library.
8 8
9 /** 9 /**
10 * HTML elements and other resources for web-based applications that need to 10 * HTML elements and other resources for web-based applications that need to
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 // Not actually used, but imported since dart:html can generate these objects. 45 // Not actually used, but imported since dart:html can generate these objects.
46 import 'dart:svg' as svg; 46 import 'dart:svg' as svg;
47 import 'dart:svg' show Matrix; 47 import 'dart:svg' show Matrix;
48 import 'dart:svg' show SvgSvgElement; 48 import 'dart:svg' show SvgSvgElement;
49 import 'dart:web_audio' as web_audio; 49 import 'dart:web_audio' as web_audio;
50 import 'dart:web_gl' as gl; 50 import 'dart:web_gl' as gl;
51 import 'dart:web_gl' show RenderingContext; 51 import 'dart:web_gl' show RenderingContext;
52 import 'dart:web_sql'; 52 import 'dart:web_sql';
53 import 'dart:_js_helper' show 53 import 'dart:_js_helper' show
54 convertDartClosureToJS, Creates, JavaScriptIndexingBehavior, 54 convertDartClosureToJS, Creates, JavaScriptIndexingBehavior,
55 JSName, Native, Null, Returns, 55 JSName, Native, Null, Returns, Inline, ForceInline,
56 findDispatchTagForInterceptorClass, setNativeSubclassDispatchRecord, 56 findDispatchTagForInterceptorClass, setNativeSubclassDispatchRecord,
57 makeLeafDispatchRecord; 57 makeLeafDispatchRecord;
58 import 'dart:_interceptors' show 58 import 'dart:_interceptors' show
59 Interceptor, JSExtendableArray, findInterceptorConstructorForType, 59 Interceptor, JSExtendableArray, JSUInt31,
60 findConstructorForNativeSubclassType, getNativeInterceptor, 60 findInterceptorConstructorForType,
61 findConstructorForNativeSubclassType,
62 getNativeInterceptor,
61 setDispatchProperty; 63 setDispatchProperty;
62 import 'dart:_isolate_helper' show IsolateNatives; 64 import 'dart:_isolate_helper' show IsolateNatives;
63 import 'dart:_foreign_helper' show JS, JS_INTERCEPTOR_CONSTANT, JS_CONST; 65 import 'dart:_foreign_helper' show JS, JS_INTERCEPTOR_CONSTANT, JS_CONST;
64 66
65 export 'dart:math' show Rectangle, Point; 67 export 'dart:math' show Rectangle, Point;
66 68
67 $!GENERATED_DART_FILES 69 $!GENERATED_DART_FILES
68 70
69 part '$AUXILIARY_DIR/AttributeMap.dart'; 71 part '$AUXILIARY_DIR/AttributeMap.dart';
70 part '$AUXILIARY_DIR/CanvasImageSource.dart'; 72 part '$AUXILIARY_DIR/CanvasImageSource.dart';
71 part '$AUXILIARY_DIR/CrossFrameTypes.dart'; 73 part '$AUXILIARY_DIR/CrossFrameTypes.dart';
72 part '$AUXILIARY_DIR/CssClassSet.dart'; 74 part '$AUXILIARY_DIR/CssClassSet.dart';
73 part '$AUXILIARY_DIR/CssRectangle.dart'; 75 part '$AUXILIARY_DIR/CssRectangle.dart';
76 part '$AUXILIARY_DIR/dart2js_CssClassSet.dart';
74 part '$AUXILIARY_DIR/Dimension.dart'; 77 part '$AUXILIARY_DIR/Dimension.dart';
75 part '$AUXILIARY_DIR/EventListener.dart'; 78 part '$AUXILIARY_DIR/EventListener.dart';
76 part '$AUXILIARY_DIR/EventStreamProvider.dart'; 79 part '$AUXILIARY_DIR/EventStreamProvider.dart';
77 part '$AUXILIARY_DIR/Html5NodeValidator.dart'; 80 part '$AUXILIARY_DIR/Html5NodeValidator.dart';
78 part '$AUXILIARY_DIR/ImmutableListMixin.dart'; 81 part '$AUXILIARY_DIR/ImmutableListMixin.dart';
79 part '$AUXILIARY_DIR/KeyCode.dart'; 82 part '$AUXILIARY_DIR/KeyCode.dart';
80 part '$AUXILIARY_DIR/KeyLocation.dart'; 83 part '$AUXILIARY_DIR/KeyLocation.dart';
81 part '$AUXILIARY_DIR/KeyName.dart'; 84 part '$AUXILIARY_DIR/KeyName.dart';
82 part '$AUXILIARY_DIR/KeyboardEventStream.dart'; 85 part '$AUXILIARY_DIR/KeyboardEventStream.dart';
83 part '$AUXILIARY_DIR/NodeValidatorBuilder.dart'; 86 part '$AUXILIARY_DIR/NodeValidatorBuilder.dart';
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 * Spawn a DOM isolate using the given URI in the same window. 142 * Spawn a DOM isolate using the given URI in the same window.
140 * This isolate is not concurrent. It runs on the browser thread 143 * This isolate is not concurrent. It runs on the browser thread
141 * with full access to the DOM. 144 * with full access to the DOM.
142 * Note: this API is still evolving and may move to dart:isolate. 145 * Note: this API is still evolving and may move to dart:isolate.
143 */ 146 */
144 @Experimental() 147 @Experimental()
145 Future<Isolate> spawnDomUri(Uri uri, List<String> args, message) { 148 Future<Isolate> spawnDomUri(Uri uri, List<String> args, message) {
146 // TODO(17738): Implement this. 149 // TODO(17738): Implement this.
147 throw new UnimplementedError(); 150 throw new UnimplementedError();
148 } 151 }
OLDNEW
« no previous file with comments | « tools/dom/src/dartium_CssClassSet.dart ('k') | tools/dom/templates/html/dartium/html_dartium.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698