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

Unified Diff: lib/html/frog/html_frog.dart

Issue 10800016: Roll IDL to multivm@707 (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:
Download patch
« no previous file with comments | « lib/html/dartium/html_dartium.dart ('k') | third_party/WebCore/Modules/indexeddb/IDBDatabase.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/frog/html_frog.dart
diff --git a/lib/html/frog/html_frog.dart b/lib/html/frog/html_frog.dart
index 2a9cb9fd0b450d4765c0b63c21984619fd25d0ee..b19e02661d6818b4113a5940e9d8af43d8851466 100644
--- a/lib/html/frog/html_frog.dart
+++ b/lib/html/frog/html_frog.dart
@@ -9137,6 +9137,15 @@ class _MutationEventImpl extends _EventImpl implements MutationEvent native "*Mu
void initMutationEvent(String type, bool canBubble, bool cancelable, _NodeImpl relatedNode, String prevValue, String newValue, String attrName, int attrChange) native;
}
+class _MutationObserverImpl implements MutationObserver native "*MutationObserver" {
+
+ void disconnect() native;
+
+ void observe(_NodeImpl target, Map options) native;
+
+ List<MutationRecord> takeRecords() native;
+}
+
class _MutationRecordImpl implements MutationRecord native "*MutationRecord" {
final _NodeListImpl addedNodes;
@@ -16273,24 +16282,17 @@ class _WebKitCSSFilterValueImpl extends _CSSValueListImpl implements WebKitCSSFi
final int operationType;
}
-class _WebKitMutationObserverImpl implements WebKitMutationObserver native "*WebKitMutationObserver" {
-
- void disconnect() native;
-
- void observe(_NodeImpl target, Map options) native;
-
- List<MutationRecord> takeRecords() native;
-}
-
class _WebKitNamedFlowImpl implements WebKitNamedFlow native "*WebKitNamedFlow" {
+ final int firstEmptyRegionIndex;
+
final String name;
final bool overset;
_NodeListImpl getContent() native;
- _NodeListImpl getRegionsByContentNode(_NodeImpl contentNode) native;
+ _NodeListImpl getRegionsByContent(_NodeImpl contentNode) native;
}
class _WebSocketImpl extends _EventTargetImpl implements WebSocket native "*WebSocket" {
@@ -26815,7 +26817,7 @@ interface MouseEvent extends UIEvent default _MouseEventFactoryProvider {
// WARNING: Do not edit - generated code.
-typedef bool MutationCallback(List<MutationRecord> mutations, WebKitMutationObserver observer);
+typedef bool MutationCallback(List<MutationRecord> mutations, MutationObserver observer);
// 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.
@@ -26855,6 +26857,24 @@ interface MutationEvent extends Event {
// WARNING: Do not edit - generated code.
+/// @domName MutationObserver
+interface MutationObserver {
+
+ /** @domName MutationObserver.disconnect */
+ void disconnect();
+
+ /** @domName MutationObserver.observe */
+ void observe(Node target, Map options);
+
+ /** @domName MutationObserver.takeRecords */
+ List<MutationRecord> takeRecords();
+}
+// 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.
+
+// WARNING: Do not edit - generated code.
+
/// @domName MutationRecord
interface MutationRecord {
@@ -34940,27 +34960,12 @@ interface WebKitCSSFilterValue extends CSSValueList {
// WARNING: Do not edit - generated code.
-/// @domName WebKitMutationObserver
-interface WebKitMutationObserver {
-
- /** @domName WebKitMutationObserver.disconnect */
- void disconnect();
-
- /** @domName WebKitMutationObserver.observe */
- void observe(Node target, Map options);
-
- /** @domName WebKitMutationObserver.takeRecords */
- List<MutationRecord> takeRecords();
-}
-// 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.
-
-// WARNING: Do not edit - generated code.
-
/// @domName WebKitNamedFlow
interface WebKitNamedFlow {
+ /** @domName WebKitNamedFlow.firstEmptyRegionIndex */
+ final int firstEmptyRegionIndex;
+
/** @domName WebKitNamedFlow.name */
final String name;
@@ -34970,8 +34975,8 @@ interface WebKitNamedFlow {
/** @domName WebKitNamedFlow.getContent */
NodeList getContent();
- /** @domName WebKitNamedFlow.getRegionsByContentNode */
- NodeList getRegionsByContentNode(Node contentNode);
+ /** @domName WebKitNamedFlow.getRegionsByContent */
+ NodeList getRegionsByContent(Node contentNode);
}
// 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
« no previous file with comments | « lib/html/dartium/html_dartium.dart ('k') | third_party/WebCore/Modules/indexeddb/IDBDatabase.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698