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

Unified Diff: client/html/dartium/html_dartium.dart

Issue 9718016: Revert "Refresh dom & html to WebKit r281" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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 | « client/dom/frog/dom_frog.dart ('k') | client/html/frog/html_frog.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/dartium/html_dartium.dart
diff --git a/client/html/dartium/html_dartium.dart b/client/html/dartium/html_dartium.dart
index 255e6dadd148ca9f3a02f3f9b10c97af425143b9..fa00d89d268f5b87785ca7b540f6cc92673ca0af 100644
--- a/client/html/dartium/html_dartium.dart
+++ b/client/html/dartium/html_dartium.dart
@@ -243,7 +243,6 @@ _wrap(raw) {
case "IDBVersionChangeEvent": return new _IDBVersionChangeEventImpl._wrap(domObject);
case "IDBVersionChangeRequest": return new _IDBVersionChangeRequestImpl._wrap(domObject);
case "HTMLIFrameElement": return new _IFrameElementImpl._wrap(domObject);
- case "IceCandidate": return new _IceCandidateImpl._wrap(domObject);
case "ImageData": return new _ImageDataImpl._wrap(domObject);
case "HTMLImageElement": return new _ImageElementImpl._wrap(domObject);
case "HTMLInputElement": return new _InputElementImpl._wrap(domObject);
@@ -10313,16 +10312,6 @@ class _IFrameElementImpl extends _ElementImpl implements IFrameElement {
}
}
-class _IceCandidateImpl extends _DOMTypeBase implements IceCandidate {
- _IceCandidateImpl._wrap(ptr) : super._wrap(ptr);
-
- String get label() => _wrap(_ptr.label);
-
- String toSdp() {
- return _wrap(_ptr.toSdp());
- }
-}
-
class _ImageDataImpl extends _DOMTypeBase implements ImageData {
_ImageDataImpl._wrap(ptr) : super._wrap(ptr);
@@ -12552,6 +12541,8 @@ class _NotificationEventsImpl extends _EventsImpl implements NotificationEvents
EventListenerList get close() => _get('close');
+ EventListenerList get display() => _get('display');
+
EventListenerList get error() => _get('error');
EventListenerList get show() => _get('show');
@@ -20229,6 +20220,10 @@ class _WebKitNamedFlowImpl extends _DOMTypeBase implements WebKitNamedFlow {
_WebKitNamedFlowImpl._wrap(ptr) : super._wrap(ptr);
bool get overflow() => _wrap(_ptr.overflow);
+
+ NodeList getRegionsByContentNode(Node contentNode) {
+ return _wrap(_ptr.getRegionsByContentNode(_unwrap(contentNode)));
+ }
}
class _WebSocketImpl extends _EventTargetImpl implements WebSocket {
@@ -21526,14 +21521,6 @@ class _FileReaderSyncFactoryProvider {
// 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.
-class _IceCandidateFactoryProvider {
- factory IceCandidate(String label, String candidateLine) =>
- _wrap(new dom.IceCandidate(_unwrap(label), _unwrap(candidateLine)));
-}
-// 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.
-
class _MediaControllerFactoryProvider {
factory MediaController() =>
_wrap(new dom.MediaController());
@@ -27861,20 +27848,6 @@ interface IFrameElement extends Element {
// WARNING: Do not edit - generated code.
-interface IceCandidate default _IceCandidateFactoryProvider {
-
- IceCandidate(String label, String candidateLine);
-
- final String label;
-
- String toSdp();
-}
-// 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.
-
interface ImageData {
final CanvasPixelArray data;
@@ -29233,6 +29206,8 @@ interface NotificationEvents extends Events {
EventListenerList get close();
+ EventListenerList get display();
+
EventListenerList get error();
EventListenerList get show();
@@ -34998,6 +34973,8 @@ interface WebKitCSSRegionRule extends CSSRule {
interface WebKitNamedFlow {
final bool overflow;
+
+ NodeList getRegionsByContentNode(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 | « client/dom/frog/dom_frog.dart ('k') | client/html/frog/html_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698