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

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

Issue 680913006: Stop generating dart:blink from dart scripts (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add dartium generated dart:blink to sdk Created 6 years, 1 month 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/dartium/_blink_dartium.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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 part '$AUXILIARY_DIR/Validators.dart'; 82 part '$AUXILIARY_DIR/Validators.dart';
83 part '$AUXILIARY_DIR/WrappedList.dart'; 83 part '$AUXILIARY_DIR/WrappedList.dart';
84 part '$AUXILIARY_DIR/_HttpRequestUtils.dart'; 84 part '$AUXILIARY_DIR/_HttpRequestUtils.dart';
85 part '$AUXILIARY_DIR/_ListIterators.dart'; 85 part '$AUXILIARY_DIR/_ListIterators.dart';
86 part '$AUXILIARY_DIR/dartium_CustomElementSupport.dart'; 86 part '$AUXILIARY_DIR/dartium_CustomElementSupport.dart';
87 part '$AUXILIARY_DIR/dartium_KeyEvent.dart'; 87 part '$AUXILIARY_DIR/dartium_KeyEvent.dart';
88 part '$AUXILIARY_DIR/dartium_Platform.dart'; 88 part '$AUXILIARY_DIR/dartium_Platform.dart';
89 part '$AUXILIARY_DIR/dartium_WrappedEvent.dart'; 89 part '$AUXILIARY_DIR/dartium_WrappedEvent.dart';
90 part '$AUXILIARY_DIR/shared_html.dart'; 90 part '$AUXILIARY_DIR/shared_html.dart';
91 91
92 part '$AUXILIARY_DIR/html_native_DOMImplementation.dart'; 92 part '$AUXILIARY_DIR/native_DOMImplementation.dart';
93 93
94 Window _window; 94 Window _window;
95 95
96 /** 96 /**
97 * Top-level container for a web page, which is usually a browser tab or window. 97 * Top-level container for a web page, which is usually a browser tab or window.
98 * 98 *
99 * Each web page loaded in the browser has its own [Window], which is a 99 * Each web page loaded in the browser has its own [Window], which is a
100 * container for the web page. 100 * container for the web page.
101 * 101 *
102 * If the web page has any `<iframe>` elements, then each `<iframe>` has its own 102 * If the web page has any `<iframe>` elements, then each `<iframe>` has its own
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 } 231 }
232 return null; 232 return null;
233 } 233 }
234 234
235 Type _getSvgType(String key) { 235 Type _getSvgType(String key) {
236 if (svgBlinkMap.containsKey(key)) { 236 if (svgBlinkMap.containsKey(key)) {
237 return svgBlinkMap[key](); 237 return svgBlinkMap[key]();
238 } 238 }
239 return null; 239 return null;
240 } 240 }
OLDNEW
« no previous file with comments | « tools/dom/templates/html/dartium/_blink_dartium.darttemplate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698