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

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

Issue 9719013: 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 45cc18813851b1b9ea34a2d6db1947ffb6e805b8..26fe9e24b58dbfc1ddb24265c68a907bf11f913b 100644
--- a/client/dom/frog/dom_frog.dart
+++ b/client/dom/frog/dom_frog.dart
@@ -4338,6 +4338,13 @@ 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;
@@ -11258,8 +11265,6 @@ 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" {
@@ -11703,6 +11708,14 @@ 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();''';
@@ -16970,6 +16983,20 @@ 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;
@@ -23107,8 +23134,6 @@ 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