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

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

Issue 23055008: Making almost all dom_ methods private. Exceptions will be addressed in a later CL. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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
(...skipping 20 matching lines...) Expand all
31 import 'dart:svg' as svg; 31 import 'dart:svg' as svg;
32 import 'dart:web_audio' as web_audio; 32 import 'dart:web_audio' as web_audio;
33 33
34 $!GENERATED_DART_FILES 34 $!GENERATED_DART_FILES
35 35
36 part '$AUXILIARY_DIR/AttributeMap.dart'; 36 part '$AUXILIARY_DIR/AttributeMap.dart';
37 part '$AUXILIARY_DIR/CanvasImageSource.dart'; 37 part '$AUXILIARY_DIR/CanvasImageSource.dart';
38 part '$AUXILIARY_DIR/CrossFrameTypes.dart'; 38 part '$AUXILIARY_DIR/CrossFrameTypes.dart';
39 part '$AUXILIARY_DIR/CssClassSet.dart'; 39 part '$AUXILIARY_DIR/CssClassSet.dart';
40 part '$AUXILIARY_DIR/CssRectangle.dart'; 40 part '$AUXILIARY_DIR/CssRectangle.dart';
41 part '$AUXILIARY_DIR/Device.dart';
41 part '$AUXILIARY_DIR/Dimension.dart'; 42 part '$AUXILIARY_DIR/Dimension.dart';
42 part '$AUXILIARY_DIR/EventListener.dart'; 43 part '$AUXILIARY_DIR/EventListener.dart';
43 part '$AUXILIARY_DIR/EventStreamProvider.dart'; 44 part '$AUXILIARY_DIR/EventStreamProvider.dart';
44 part '$AUXILIARY_DIR/ImmutableListMixin.dart'; 45 part '$AUXILIARY_DIR/ImmutableListMixin.dart';
45 part '$AUXILIARY_DIR/KeyboardEventStream.dart'; 46 part '$AUXILIARY_DIR/KeyboardEventStream.dart';
46 part '$AUXILIARY_DIR/KeyCode.dart'; 47 part '$AUXILIARY_DIR/KeyCode.dart';
47 part '$AUXILIARY_DIR/KeyLocation.dart'; 48 part '$AUXILIARY_DIR/KeyLocation.dart';
48 part '$AUXILIARY_DIR/KeyName.dart'; 49 part '$AUXILIARY_DIR/KeyName.dart';
49 part '$AUXILIARY_DIR/Point.dart'; 50 part '$AUXILIARY_DIR/Point.dart';
50 part '$AUXILIARY_DIR/ReadyState.dart'; 51 part '$AUXILIARY_DIR/ReadyState.dart';
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 _callPortLastResult = json.parse(_getPortSyncEventData(event)); 114 _callPortLastResult = json.parse(_getPortSyncEventData(event));
114 }); 115 });
115 _callPortInitialized = true; 116 _callPortInitialized = true;
116 } 117 }
117 assert(_callPortLastResult == null); 118 assert(_callPortLastResult == null);
118 _dispatchEvent('js-sync-message', {'id': id, 'message': message}); 119 _dispatchEvent('js-sync-message', {'id': id, 'message': message});
119 var result = _callPortLastResult; 120 var result = _callPortLastResult;
120 _callPortLastResult = null; 121 _callPortLastResult = null;
121 return result; 122 return result;
122 } 123 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698