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

Unified Diff: client/dom/dom.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 | « no previous file | client/dom/frog/dom_frog.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/dom.dart
diff --git a/client/dom/dom.dart b/client/dom/dom.dart
index 33fdbc8b83029faca6b40cfad59cd201cbd355dc..ccf1c8dc6a5d93100100aff90ddd25a06a6bc559 100644
--- a/client/dom/dom.dart
+++ b/client/dom/dom.dart
@@ -69,6 +69,13 @@ class _HTMLOptionElementFactoryProvider {
// 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) => _dummy();
+}
+// 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 _MediaStreamFactoryProvider {
factory MediaStream(MediaStreamTrackList audioTracks, MediaStreamTrackList videoTracks) => _dummy();
}
@@ -5308,6 +5315,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;
@@ -11445,8 +11466,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 | « no previous file | client/dom/frog/dom_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698