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

Unified Diff: client/dom/frog/dom_frog.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:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/dom/dom.dart ('k') | client/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/frog/dom_frog.dart
diff --git a/client/dom/frog/dom_frog.dart b/client/dom/frog/dom_frog.dart
index 26fe9e24b58dbfc1ddb24265c68a907bf11f913b..45cc18813851b1b9ea34a2d6db1947ffb6e805b8 100644
--- a/client/dom/frog/dom_frog.dart
+++ b/client/dom/frog/dom_frog.dart
@@ -4338,13 +4338,6 @@ class _IDBVersionChangeRequestJs extends _IDBRequestJs implements IDBVersionChan
EventListener onblocked;
}
-class _IceCandidateJs extends _DOMTypeJs implements IceCandidate native "*IceCandidate" {
-
- final String label;
-
- String toSdp() native;
-}
-
class _ImageDataJs extends _DOMTypeJs implements ImageData native "*ImageData" {
final _CanvasPixelArrayJs data;
@@ -11265,6 +11258,8 @@ class _WebKitCSSTransformValueJs extends _CSSValueListJs implements WebKitCSSTra
class _WebKitNamedFlowJs extends _DOMTypeJs implements WebKitNamedFlow native "*WebKitNamedFlow" {
final bool overflow;
+
+ _NodeListJs getRegionsByContentNode(_NodeJs contentNode) native;
}
class _WebKitPointJs extends _DOMTypeJs implements WebKitPoint native "*WebKitPoint" {
@@ -11708,14 +11703,6 @@ return new Option(data, value, defaultSelected, selected);
// 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) native
- '''return new IceCandidate(label, 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() native
'''return new MediaController();''';
@@ -16983,20 +16970,6 @@ interface IDBVersionChangeRequest extends IDBRequest {
// 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;
@@ -23134,6 +23107,8 @@ interface WebKitCSSTransformValue extends CSSValueList {
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/dom.dart ('k') | client/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698