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

Unified Diff: sdk/lib/html/dartium/html_dartium.dart

Issue 12224101: Move RTCPeerConnection to correct location to generate the supported check for (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 10 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 | « no previous file | tools/dom/templates/html/dart2js/impl_RTCPeerConnection.darttemplate » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dartium/html_dartium.dart
===================================================================
--- sdk/lib/html/dartium/html_dartium.dart (revision 18326)
+++ sdk/lib/html/dartium/html_dartium.dart (working copy)
@@ -21445,18 +21445,21 @@
RtcIceCandidate get candidate native "RTCIceCandidateEvent_candidate_Getter";
}
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// Copyright (c) 2013, 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.
-
-@DocsEditable
@DomName('RTCPeerConnection')
@SupportedBrowser(SupportedBrowser.CHROME)
@Experimental
class RtcPeerConnection extends EventTarget {
+
+ /**
+ * Checks if Real Time Communication (RTC) APIs are supported and enabled on
+ * the current platform.
+ */
+ static bool get supported => true;
RtcPeerConnection.internal() : super.internal();
@DomName('RTCPeerConnection.addstreamEvent')
@@ -21620,6 +21623,8 @@
}
+
+
@DocsEditable
@deprecated
class RtcPeerConnectionEvents extends Events {
« no previous file with comments | « no previous file | tools/dom/templates/html/dart2js/impl_RTCPeerConnection.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698