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

Unified Diff: tools/dom/idl/dart/dart.idl

Issue 551713003: Fix handling default parameters (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Cleanup Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/dom/scripts/databasebuilder.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/idl/dart/dart.idl
diff --git a/tools/dom/idl/dart/dart.idl b/tools/dom/idl/dart/dart.idl
index 942e36fa999c7f1d38b7d3067563dc9e6efa2884..ee014c0b88793212e2512e7381b05539102688ed 100644
--- a/tools/dom/idl/dart/dart.idl
+++ b/tools/dom/idl/dart/dart.idl
@@ -69,7 +69,7 @@ interface CharacterData {
readonly attribute Element previousElementSibling;
};
-[DartCallback]
+[Callback]
interface TimeoutHandler {
void handleEvent();
};
@@ -253,7 +253,7 @@ interface Blob {
interface WebKitPoint {
};
-[DartSupplemental, DartCallback] // Add missing Callback attribute.
+[DartSupplemental, Callback] // Add missing Callback attribute.
interface VoidCallback {
Leaf 2014/09/09 20:47:28 This interface is marked callback in the idl, I wo
terry 2014/09/09 20:58:35 Good idea I'll look at that post checkin and chang
};
@@ -262,9 +262,8 @@ interface SVGNumber {
};
// Keep it in to generate Dart code, C++ implementation is filterd out in generator.
-[
- DartCallback
-] interface MutationCallback {
+[Callback]
+interface MutationCallback {
[Custom] boolean handleEvent(MutationRecordArray mutations, MutationObserver observer);
};
« no previous file with comments | « no previous file | tools/dom/scripts/databasebuilder.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698