mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 22:00:47 +01:00

Bug: webrtc:10345 Change-Id: I9271376ff60f5fc6e9014b7dd9a8a5682bdbf452 Reviewed-on: https://webrtc-review.googlesource.com/c/123780 Commit-Queue: Peter Hanspers <peterhanspers@webrtc.org> Reviewed-by: Kári Helgason <kthelgason@webrtc.org> Reviewed-by: Anders Carlsson <andersc@webrtc.org> Cr-Commit-Position: refs/heads/master@{#26801}
19 lines
603 B
Objective-C
19 lines
603 B
Objective-C
/*
|
|
* Copyright 2019 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#import "RTCStatisticsReport.h"
|
|
|
|
#include "api/stats/rtc_stats_report.h"
|
|
|
|
@interface RTCStatisticsReport (Private)
|
|
|
|
- (instancetype)initWithReport:(const webrtc::RTCStatsReport &)report;
|
|
|
|
@end
|