2014-05-13 18:00:26 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright 2011 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.
|
|
|
|
|
*/
|
2019-01-11 09:11:00 -08:00
|
|
|
#ifndef RTC_BASE_REF_COUNT_H_
|
|
|
|
|
#define RTC_BASE_REF_COUNT_H_
|
2014-05-13 18:00:26 +00:00
|
|
|
|
2023-10-31 11:42:45 +00:00
|
|
|
// Transition file for backwards compatibility with source code
|
|
|
|
|
// that includes the non-API file.
|
2017-10-19 13:15:17 +02:00
|
|
|
|
2023-10-31 11:42:45 +00:00
|
|
|
#include "api/ref_count.h"
|
2017-10-19 13:15:17 +02:00
|
|
|
|
2023-10-31 11:42:45 +00:00
|
|
|
namespace rtc {
|
2017-06-29 07:52:50 +02:00
|
|
|
|
2023-10-31 11:42:45 +00:00
|
|
|
// TODO(bugs.webrtc.org/15622): Deprecate and remove these aliases.
|
2024-06-06 11:01:02 +00:00
|
|
|
using RefCountInterface [[deprecated("Use webrtc::RefCountInterface")]] =
|
|
|
|
|
webrtc::RefCountInterface;
|
|
|
|
|
using RefCountReleaseStatus
|
|
|
|
|
[[deprecated("Use webrtc::RefCountReleaseStatus")]] =
|
|
|
|
|
webrtc::RefCountReleaseStatus;
|
2017-06-29 07:52:50 +02:00
|
|
|
|
|
|
|
|
} // namespace rtc
|
2014-05-13 18:00:26 +00:00
|
|
|
|
2019-01-11 09:11:00 -08:00
|
|
|
#endif // RTC_BASE_REF_COUNT_H_
|