2016-06-08 04:59:16 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright 2016 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2018-08-30 09:30:29 +02:00
|
|
|
#import "RTCMetricsSampleInfo.h"
|
2016-06-08 04:59:16 -07:00
|
|
|
|
2018-09-28 08:51:10 +02:00
|
|
|
#include "system_wrappers/include/metrics.h"
|
2016-06-08 04:59:16 -07:00
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
2020-05-04 16:14:32 +02:00
|
|
|
@interface RTC_OBJC_TYPE (RTCMetricsSampleInfo)
|
|
|
|
|
()
|
2016-06-08 04:59:16 -07:00
|
|
|
|
2020-05-04 16:14:32 +02:00
|
|
|
/** Initialize an RTCMetricsSampleInfo object from native SampleInfo. */
|
2025-01-08 05:45:56 -08:00
|
|
|
- (instancetype)initWithNativeSampleInfo
|
|
|
|
|
: (const webrtc::metrics::SampleInfo &)info;
|
2016-06-08 04:59:16 -07:00
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|