blob: de762a9a0f37a7d684be97560c2776d81153b126 [file] [log] [blame]
/*
* Copyright 2020 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.
*/
#include "network_monitor_factory.h"
#if defined(WEBRTC_IOS)
#include "sdk/objc/native/src/objc_network_monitor.h"
#endif
#include "rtc_base/logging.h"
namespace webrtc {
std::unique_ptr<rtc::NetworkMonitorFactory> CreateNetworkMonitorFactory() {
RTC_LOG(LS_INFO) << __FUNCTION__;
#if defined(WEBRTC_IOS)
return std::make_unique<ObjCNetworkMonitorFactory>();
#else
return nullptr;
#endif
}
}