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

Unified Diff: third_party/WebKit/Source/modules/peerconnection/RTCStatsResponse.idl

Issue 2156063002: Preparation for new Promise-based RTCPeerConnection.getStats. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase with master Created 4 years, 5 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
Index: third_party/WebKit/Source/modules/peerconnection/RTCStatsResponse.idl
diff --git a/third_party/WebKit/Source/modules/peerconnection/RTCStatsResponse.idl b/third_party/WebKit/Source/modules/peerconnection/RTCStatsResponse.idl
index edc759a6d8ae248fd571ec9ae1540763cc116176..c4e15d0a2b26c13ef8cc9c56126a32e385f5c802 100644
--- a/third_party/WebKit/Source/modules/peerconnection/RTCStatsResponse.idl
+++ b/third_party/WebKit/Source/modules/peerconnection/RTCStatsResponse.idl
@@ -25,7 +25,7 @@
[
NoInterfaceObject
] interface RTCStatsResponse {
- sequence<RTCStatsReport> result();
- RTCStatsReport namedItem([Default=Undefined] optional DOMString name);
- [NotEnumerable, ImplementedAs=namedItem] getter RTCStatsReport ([Default=Undefined] optional DOMString name);
+ sequence<RTCLegacyStatsReport> result();
+ RTCLegacyStatsReport namedItem([Default=Undefined] optional DOMString name);
+ [NotEnumerable, ImplementedAs=namedItem] getter RTCLegacyStatsReport ([Default=Undefined] optional DOMString name);
};

Powered by Google App Engine
This is Rietveld 408576698