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

Side by Side Diff: lib/dom/dom.dart

Issue 10696209: MutationObserver (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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #library('dom'); 1 #library('dom');
2 2
3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4 // for details. All rights reserved. Use of this source code is governed by a 4 // for details. All rights reserved. Use of this source code is governed by a
5 // BSD-style license that can be found in the LICENSE file. 5 // BSD-style license that can be found in the LICENSE file.
6 6
7 // DO NOT EDIT 7 // DO NOT EDIT
8 // Auto-generated Dart DOM library with no implementation. 8 // Auto-generated Dart DOM library with no implementation.
9 9
10 10
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 // for details. All rights reserved. Use of this source code is governed by a 111 // for details. All rights reserved. Use of this source code is governed by a
112 // BSD-style license that can be found in the LICENSE file. 112 // BSD-style license that can be found in the LICENSE file.
113 113
114 class _MessageChannelFactoryProvider { 114 class _MessageChannelFactoryProvider {
115 factory MessageChannel() => _dummy(); 115 factory MessageChannel() => _dummy();
116 } 116 }
117 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 117 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
118 // for details. All rights reserved. Use of this source code is governed by a 118 // for details. All rights reserved. Use of this source code is governed by a
119 // BSD-style license that can be found in the LICENSE file. 119 // BSD-style license that can be found in the LICENSE file.
120 120
121 class _MutationObserverFactoryProvider {
122 factory MutationObserver(MutationCallback callback) => _dummy();
123 }
124 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
125 // for details. All rights reserved. Use of this source code is governed by a
126 // BSD-style license that can be found in the LICENSE file.
127
121 class _NotificationFactoryProvider { 128 class _NotificationFactoryProvider {
122 factory Notification(String title, [Map options]) => _dummy(); 129 factory Notification(String title, [Map options]) => _dummy();
123 } 130 }
124 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 131 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
125 // for details. All rights reserved. Use of this source code is governed by a 132 // for details. All rights reserved. Use of this source code is governed by a
126 // BSD-style license that can be found in the LICENSE file. 133 // BSD-style license that can be found in the LICENSE file.
127 134
128 class _PeerConnection00FactoryProvider { 135 class _PeerConnection00FactoryProvider {
129 factory PeerConnection00(String serverConfiguration, IceCallback iceCallback) => _dummy(); 136 factory PeerConnection00(String serverConfiguration, IceCallback iceCallback) => _dummy();
130 } 137 }
(...skipping 5916 matching lines...) Expand 10 before | Expand all | Expand 10 after
6047 final Node relatedNode; 6054 final Node relatedNode;
6048 6055
6049 void initMutationEvent(String type, bool canBubble, bool cancelable, Node rela tedNode, String prevValue, String newValue, String attrName, int attrChange); 6056 void initMutationEvent(String type, bool canBubble, bool cancelable, Node rela tedNode, String prevValue, String newValue, String attrName, int attrChange);
6050 } 6057 }
6051 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6058 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6052 // for details. All rights reserved. Use of this source code is governed by a 6059 // for details. All rights reserved. Use of this source code is governed by a
6053 // BSD-style license that can be found in the LICENSE file. 6060 // BSD-style license that can be found in the LICENSE file.
6054 6061
6055 // WARNING: Do not edit - generated code. 6062 // WARNING: Do not edit - generated code.
6056 6063
6057 interface MutationObserver { 6064 interface MutationObserver default _MutationObserverFactoryProvider {
6065
6066 MutationObserver(MutationCallback callback);
6058 6067
6059 void disconnect(); 6068 void disconnect();
6060 6069
6061 void observe(Node target, Map options); 6070 void _observe(Node target, Map options);
6062 6071
6063 List<MutationRecord> takeRecords(); 6072 List<MutationRecord> takeRecords();
6064 } 6073 }
6065 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6074 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6066 // for details. All rights reserved. Use of this source code is governed by a 6075 // for details. All rights reserved. Use of this source code is governed by a
6067 // BSD-style license that can be found in the LICENSE file. 6076 // BSD-style license that can be found in the LICENSE file.
6068 6077
6069 // WARNING: Do not edit - generated code. 6078 // WARNING: Do not edit - generated code.
6070 6079
6071 interface MutationRecord { 6080 interface MutationRecord {
(...skipping 6898 matching lines...) Expand 10 before | Expand all | Expand 10 after
12970 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12979 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12971 // for details. All rights reserved. Use of this source code is governed by a 12980 // for details. All rights reserved. Use of this source code is governed by a
12972 // BSD-style license that can be found in the LICENSE file. 12981 // BSD-style license that can be found in the LICENSE file.
12973 12982
12974 Window get window() => _dummy(); 12983 Window get window() => _dummy();
12975 12984
12976 // TODO(vsm): Remove when prefixes are supported. 12985 // TODO(vsm): Remove when prefixes are supported.
12977 Window get dom_window() => _dummy(); 12986 Window get dom_window() => _dummy();
12978 12987
12979 Document get document() => _dummy(); 12988 Document get document() => _dummy();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698