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

Unified Diff: lib/dom/frog/dom_frog.dart

Issue 10779024: Revert "Handle all registered types, not just 'Primitive' ones." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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 | « lib/dom/dom.dart ('k') | lib/dom/scripts/dartgenerator.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/frog/dom_frog.dart
diff --git a/lib/dom/frog/dom_frog.dart b/lib/dom/frog/dom_frog.dart
index 309f0c10f6885faaad460f313402b6c2a9f47845..88b77ca828d61841fd49c53ff9467ff167056e57 100644
--- a/lib/dom/frog/dom_frog.dart
+++ b/lib/dom/frog/dom_frog.dart
@@ -5230,6 +5230,9 @@ class _MouseEventJs extends _UIEventJs implements MouseEvent native "*MouseEvent
void initMouseEvent(String type, bool canBubble, bool cancelable, _DOMWindowJs view, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, int button, _EventTargetJs relatedTarget) native;
}
+class _MutationCallbackJs extends _DOMTypeJs implements MutationCallback native "*MutationCallback" {
+}
+
class _MutationEventJs extends _EventJs implements MutationEvent native "*MutationEvent" {
static final int ADDITION = 2;
@@ -17986,7 +17989,8 @@ interface MouseEvent extends UIEvent {
// WARNING: Do not edit - generated code.
-typedef bool MutationCallback(List<MutationRecord> mutations, WebKitMutationObserver observer);
+interface MutationCallback {
+}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
« no previous file with comments | « lib/dom/dom.dart ('k') | lib/dom/scripts/dartgenerator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698