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

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

Issue 25405002: Remove NPObject from generated dart:html for Dartium. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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
« no previous file with comments | « tools/dom/src/native_DOMPublic.dart ('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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 part '$AUXILIARY_DIR/Rectangle.dart'; 74 part '$AUXILIARY_DIR/Rectangle.dart';
75 part '$AUXILIARY_DIR/Serialization.dart'; 75 part '$AUXILIARY_DIR/Serialization.dart';
76 part '$AUXILIARY_DIR/Validators.dart'; 76 part '$AUXILIARY_DIR/Validators.dart';
77 part '$AUXILIARY_DIR/WrappedEvent.dart'; 77 part '$AUXILIARY_DIR/WrappedEvent.dart';
78 part '$AUXILIARY_DIR/WrappedList.dart'; 78 part '$AUXILIARY_DIR/WrappedList.dart';
79 part '$AUXILIARY_DIR/_HttpRequestUtils.dart'; 79 part '$AUXILIARY_DIR/_HttpRequestUtils.dart';
80 part '$AUXILIARY_DIR/_ListIterators.dart'; 80 part '$AUXILIARY_DIR/_ListIterators.dart';
81 part '$AUXILIARY_DIR/dartium_KeyEvent.dart'; 81 part '$AUXILIARY_DIR/dartium_KeyEvent.dart';
82 part '$AUXILIARY_DIR/dartium_Platform.dart'; 82 part '$AUXILIARY_DIR/dartium_Platform.dart';
83 83
84 part '$AUXILIARY_DIR/native_DOMPublic.dart';
85 part '$AUXILIARY_DIR/native_DOMImplementation.dart'; 84 part '$AUXILIARY_DIR/native_DOMImplementation.dart';
86 85
87 Window _window; 86 Window _window;
88 87
89 /** 88 /**
90 * Top-level container for a web page, which is usually a browser tab or window. 89 * Top-level container for a web page, which is usually a browser tab or window.
91 * 90 *
92 * Each web page loaded in the browser has its own [Window], which is a 91 * Each web page loaded in the browser has its own [Window], which is a
93 * container for the web page. 92 * container for the web page.
94 * 93 *
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 _callPortLastResult = JSON.decode(_getPortSyncEventData(event)); 134 _callPortLastResult = JSON.decode(_getPortSyncEventData(event));
136 }); 135 });
137 _callPortInitialized = true; 136 _callPortInitialized = true;
138 } 137 }
139 assert(_callPortLastResult == null); 138 assert(_callPortLastResult == null);
140 _dispatchEvent('js-sync-message', {'id': id, 'message': message}); 139 _dispatchEvent('js-sync-message', {'id': id, 'message': message});
141 var result = _callPortLastResult; 140 var result = _callPortLastResult;
142 _callPortLastResult = null; 141 _callPortLastResult = null;
143 return result; 142 return result;
144 } 143 }
OLDNEW
« no previous file with comments | « tools/dom/src/native_DOMPublic.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698