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

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

Issue 258733009: Rename blink -> _blink (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Regenerate SDK from dart repo 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
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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
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:svg' show SvgSvgElement;
53 import 'dart:web_audio' as web_audio; 53 import 'dart:web_audio' as web_audio;
54 $if DART_USE_BLINK 54 $if DART_USE_BLINK
55 import 'dart:blink' as blink; 55 import 'dart:_blink' as _blink;
56 $endif 56 $endif
57 57
58 export 'dart:math' show Rectangle, Point; 58 export 'dart:math' show Rectangle, Point;
59 59
60 $!GENERATED_DART_FILES 60 $!GENERATED_DART_FILES
61 61
62 // Issue 14721, order important for WrappedEvent. 62 // Issue 14721, order important for WrappedEvent.
63 part '$AUXILIARY_DIR/WrappedEvent.dart'; 63 part '$AUXILIARY_DIR/WrappedEvent.dart';
64 part '$AUXILIARY_DIR/AttributeMap.dart'; 64 part '$AUXILIARY_DIR/AttributeMap.dart';
65 part '$AUXILIARY_DIR/CanvasImageSource.dart'; 65 part '$AUXILIARY_DIR/CanvasImageSource.dart';
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 * Spawn a DOM isolate using the given URI in the same window. 132 * Spawn a DOM isolate using the given URI in the same window.
133 * This isolate is not concurrent. It runs on the browser thread 133 * This isolate is not concurrent. It runs on the browser thread
134 * with full access to the DOM. 134 * with full access to the DOM.
135 * Note: this API is still evolving and may move to dart:isolate. 135 * Note: this API is still evolving and may move to dart:isolate.
136 */ 136 */
137 @Experimental() 137 @Experimental()
138 Future<Isolate> spawnDomUri(Uri uri, List<String> args, message) { 138 Future<Isolate> spawnDomUri(Uri uri, List<String> args, message) {
139 // TODO(17738): Plumb arguments and return value through. 139 // TODO(17738): Plumb arguments and return value through.
140 return _Utils.spawnDomUri(uri.toString()); 140 return _Utils.spawnDomUri(uri.toString());
141 } 141 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698