mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 05:40:42 +01:00
Remove remains of webrtc/base
All downstream code have been updated to the new location. In PRESUBMIT.py: * Remove webrtc/rtc_base from CPP_BLACKLIST * Add webrtc/rtc_base to LEGACY_API_DIRS Fix some duplicated paths in webrtc/modules/audio_processing/test/conversational_speech/BUILD.gn BUG=webrtc:7634 TBR=kwiberg@webrtc.org Review-Url: https://codereview.webrtc.org/2976293002 Cr-Commit-Position: refs/heads/master@{#19094}
This commit is contained in:
parent
3c3b110eeb
commit
f6a861ab6c
223 changed files with 452 additions and 4037 deletions
|
@ -18,7 +18,6 @@ CPPLINT_BLACKLIST = [
|
|||
'tools_webrtc',
|
||||
'webrtc/api/video_codecs/video_decoder.h',
|
||||
'webrtc/api/video_codecs/video_encoder.h',
|
||||
'webrtc/base',
|
||||
'webrtc/examples/objc',
|
||||
'webrtc/media',
|
||||
'webrtc/modules/audio_coding',
|
||||
|
@ -74,7 +73,6 @@ NATIVE_API_DIRS = (
|
|||
# These directories should not be used but are maintained only to avoid breaking
|
||||
# some legacy downstream code.
|
||||
LEGACY_API_DIRS = (
|
||||
'webrtc/base',
|
||||
'webrtc/common_audio/include',
|
||||
'webrtc/modules/audio_coding/include',
|
||||
'webrtc/modules/audio_conference_mixer/include',
|
||||
|
@ -91,6 +89,7 @@ LEGACY_API_DIRS = (
|
|||
'webrtc/modules/video_coding/codecs/vp8/include',
|
||||
'webrtc/modules/video_coding/codecs/vp9/include',
|
||||
'webrtc/modules/video_coding/include',
|
||||
'webrtc/rtc_base',
|
||||
'webrtc/system_wrappers/include',
|
||||
'webrtc/voice_engine/include',
|
||||
)
|
||||
|
|
|
@ -232,8 +232,8 @@ rtc_source_set("video_stream_api") {
|
|||
deps = [
|
||||
":webrtc_common",
|
||||
"api:transport_api",
|
||||
"base:rtc_base_approved",
|
||||
"common_video:common_video",
|
||||
"rtc_base:rtc_base_approved",
|
||||
]
|
||||
}
|
||||
|
||||
|
@ -252,7 +252,6 @@ if (!build_with_chromium) {
|
|||
"api",
|
||||
"api:transport_api",
|
||||
"audio",
|
||||
"base",
|
||||
"call",
|
||||
"common_audio",
|
||||
"common_video",
|
||||
|
@ -291,7 +290,6 @@ if (!build_with_chromium) {
|
|||
":video_engine_tests",
|
||||
":webrtc_nonparallel_tests",
|
||||
":webrtc_perf_tests",
|
||||
"base:rtc_base_tests_utils",
|
||||
"common_audio:common_audio_unittests",
|
||||
"common_video:common_video_unittests",
|
||||
"media:rtc_media_unittests",
|
||||
|
@ -306,6 +304,7 @@ if (!build_with_chromium) {
|
|||
"ortc:ortc_unittests",
|
||||
"pc:peerconnection_unittests",
|
||||
"pc:rtc_pc_unittests",
|
||||
"rtc_base:rtc_base_tests_utils",
|
||||
"stats:rtc_stats_unittests",
|
||||
"system_wrappers:system_wrappers_unittests",
|
||||
"test",
|
||||
|
@ -393,16 +392,16 @@ if (rtc_include_tests) {
|
|||
":webrtc_common",
|
||||
"api:rtc_api_unittests",
|
||||
"api/audio_codecs/test:audio_codecs_api_unittests",
|
||||
"base:rtc_base_approved_unittests",
|
||||
"base:rtc_base_tests_main",
|
||||
"base:rtc_base_tests_utils",
|
||||
"base:rtc_base_unittests",
|
||||
"base:rtc_numerics_unittests",
|
||||
"base:rtc_task_queue_unittests",
|
||||
"base:sequenced_task_checker_unittests",
|
||||
"base:weak_ptr_unittests",
|
||||
"p2p:libstunprober_unittests",
|
||||
"p2p:rtc_p2p_unittests",
|
||||
"rtc_base:rtc_base_approved_unittests",
|
||||
"rtc_base:rtc_base_tests_main",
|
||||
"rtc_base:rtc_base_tests_utils",
|
||||
"rtc_base:rtc_base_unittests",
|
||||
"rtc_base:rtc_numerics_unittests",
|
||||
"rtc_base:rtc_task_queue_unittests",
|
||||
"rtc_base:sequenced_task_checker_unittests",
|
||||
"rtc_base:weak_ptr_unittests",
|
||||
"system_wrappers:metrics_default",
|
||||
]
|
||||
|
||||
|
@ -440,12 +439,12 @@ if (rtc_include_tests) {
|
|||
testonly = true
|
||||
deps = [
|
||||
"audio:audio_tests",
|
||||
"base:rtc_base_tests_utils",
|
||||
|
||||
# TODO(eladalon): call_tests aren't actually video-specific, so we
|
||||
# should move them to a more appropriate test suite.
|
||||
"call:call_tests",
|
||||
"modules/video_capture",
|
||||
"rtc_base:rtc_base_tests_utils",
|
||||
"test:test_common",
|
||||
"test:test_main",
|
||||
"test:video_test_common",
|
||||
|
@ -518,7 +517,7 @@ if (rtc_include_tests) {
|
|||
rtc_test("webrtc_nonparallel_tests") {
|
||||
testonly = true
|
||||
deps = [
|
||||
"base:rtc_base_nonparallel_tests",
|
||||
"rtc_base:rtc_base_nonparallel_tests",
|
||||
]
|
||||
if (is_android) {
|
||||
deps += [ "//testing/android/native_test:native_test_support" ]
|
||||
|
|
|
@ -28,7 +28,7 @@ rtc_source_set("call_api") {
|
|||
":audio_mixer_api",
|
||||
":transport_api",
|
||||
"..:webrtc_common",
|
||||
"../base:rtc_base_approved",
|
||||
"../rtc_base:rtc_base_approved",
|
||||
"audio_codecs:audio_codecs_api",
|
||||
]
|
||||
}
|
||||
|
@ -83,8 +83,8 @@ rtc_static_library("libjingle_peerconnection_api") {
|
|||
deps = [
|
||||
":rtc_stats_api",
|
||||
"..:webrtc_common",
|
||||
"../base:rtc_base",
|
||||
"../base:rtc_base_approved",
|
||||
"../rtc_base:rtc_base",
|
||||
"../rtc_base:rtc_base_approved",
|
||||
"audio_codecs:audio_codecs_api",
|
||||
]
|
||||
|
||||
|
@ -143,7 +143,7 @@ rtc_source_set("rtc_stats_api") {
|
|||
]
|
||||
|
||||
deps = [
|
||||
"../base:rtc_base_approved",
|
||||
"../rtc_base:rtc_base_approved",
|
||||
]
|
||||
}
|
||||
|
||||
|
@ -153,8 +153,8 @@ rtc_source_set("audio_mixer_api") {
|
|||
]
|
||||
|
||||
deps = [
|
||||
"../base:rtc_base_approved",
|
||||
"../modules:module_api",
|
||||
"../rtc_base:rtc_base_approved",
|
||||
]
|
||||
}
|
||||
|
||||
|
@ -178,7 +178,7 @@ rtc_source_set("video_frame_api") {
|
|||
]
|
||||
|
||||
deps = [
|
||||
"../base:rtc_base_approved",
|
||||
"../rtc_base:rtc_base_approved",
|
||||
"../system_wrappers",
|
||||
]
|
||||
|
||||
|
@ -206,7 +206,7 @@ rtc_source_set("libjingle_peerconnection_test_api") {
|
|||
]
|
||||
|
||||
deps = [
|
||||
"../base:rtc_base_approved",
|
||||
"../rtc_base:rtc_base_approved",
|
||||
]
|
||||
}
|
||||
|
||||
|
@ -235,7 +235,7 @@ if (rtc_include_tests) {
|
|||
]
|
||||
deps = [
|
||||
":libjingle_peerconnection_api",
|
||||
"../base:rtc_base_approved",
|
||||
"../rtc_base:rtc_base_approved",
|
||||
]
|
||||
if (!build_with_chromium && is_clang) {
|
||||
# Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
|
||||
|
|
|
@ -27,7 +27,7 @@ rtc_source_set("audio_codecs_api") {
|
|||
]
|
||||
deps = [
|
||||
"../..:webrtc_common",
|
||||
"../../base:rtc_base_approved",
|
||||
"../../rtc_base:rtc_base_approved",
|
||||
]
|
||||
}
|
||||
|
||||
|
@ -38,8 +38,8 @@ rtc_static_library("builtin_audio_decoder_factory") {
|
|||
]
|
||||
deps = [
|
||||
":audio_codecs_api",
|
||||
"../../base:rtc_base_approved",
|
||||
"../../modules/audio_coding:builtin_audio_decoder_factory_internal",
|
||||
"../../rtc_base:rtc_base_approved",
|
||||
]
|
||||
}
|
||||
|
||||
|
@ -50,7 +50,7 @@ rtc_static_library("builtin_audio_encoder_factory") {
|
|||
]
|
||||
deps = [
|
||||
":audio_codecs_api",
|
||||
"../../base:rtc_base_approved",
|
||||
"../../modules/audio_coding:builtin_audio_encoder_factory_internal",
|
||||
"../../rtc_base:rtc_base_approved",
|
||||
]
|
||||
}
|
||||
|
|
|
@ -26,8 +26,8 @@ rtc_static_library("audio_encoder_g722") {
|
|||
deps = [
|
||||
":audio_encoder_g722_config",
|
||||
"..:audio_codecs_api",
|
||||
"../../../base:rtc_base_approved",
|
||||
"../../../modules/audio_coding:g722",
|
||||
"../../../rtc_base:rtc_base_approved",
|
||||
]
|
||||
}
|
||||
|
||||
|
@ -39,7 +39,7 @@ rtc_static_library("audio_decoder_g722") {
|
|||
deps = [
|
||||
"..:audio_codecs_api",
|
||||
"../../..:webrtc_common",
|
||||
"../../../base:rtc_base_approved",
|
||||
"../../../modules/audio_coding:g722",
|
||||
"../../../rtc_base:rtc_base_approved",
|
||||
]
|
||||
}
|
||||
|
|
|
@ -26,8 +26,8 @@ rtc_static_library("audio_encoder_ilbc") {
|
|||
deps = [
|
||||
":audio_encoder_ilbc_config",
|
||||
"..:audio_codecs_api",
|
||||
"../../../base:rtc_base_approved",
|
||||
"../../../modules/audio_coding:ilbc",
|
||||
"../../../rtc_base:rtc_base_approved",
|
||||
]
|
||||
}
|
||||
|
||||
|
@ -39,7 +39,7 @@ rtc_static_library("audio_decoder_ilbc") {
|
|||
deps = [
|
||||
"..:audio_codecs_api",
|
||||
"../../..:webrtc_common",
|
||||
"../../../base:rtc_base_approved",
|
||||
"../../../modules/audio_coding:ilbc",
|
||||
"../../../rtc_base:rtc_base_approved",
|
||||
]
|
||||
}
|
||||
|
|
|
@ -18,7 +18,7 @@ rtc_static_library("audio_encoder_opus_config") {
|
|||
"audio_encoder_opus_config.h",
|
||||
]
|
||||
deps = [
|
||||
"../../../base:rtc_base_approved",
|
||||
"../../../rtc_base:rtc_base_approved",
|
||||
]
|
||||
defines = []
|
||||
if (rtc_opus_variable_complexity) {
|
||||
|
@ -35,9 +35,9 @@ rtc_source_set("audio_encoder_opus") {
|
|||
deps = [
|
||||
":audio_encoder_opus_config",
|
||||
"..:audio_codecs_api",
|
||||
"../../../base:protobuf_utils", # TODO(kwiberg): Why is this needed?
|
||||
"../../../base:rtc_base_approved",
|
||||
"../../../modules/audio_coding:webrtc_opus",
|
||||
"../../../rtc_base:protobuf_utils", # TODO(kwiberg): Why is this needed?
|
||||
"../../../rtc_base:rtc_base_approved",
|
||||
]
|
||||
}
|
||||
|
||||
|
@ -49,7 +49,7 @@ rtc_static_library("audio_decoder_opus") {
|
|||
deps = [
|
||||
"..:audio_codecs_api",
|
||||
"../../..:webrtc_common",
|
||||
"../../../base:rtc_base_approved",
|
||||
"../../../modules/audio_coding:webrtc_opus",
|
||||
"../../../rtc_base:rtc_base_approved",
|
||||
]
|
||||
}
|
||||
|
|
|
@ -21,8 +21,8 @@ if (rtc_include_tests) {
|
|||
]
|
||||
deps = [
|
||||
"..:audio_codecs_api",
|
||||
"../../../base:protobuf_utils", # TODO(kwiberg): Why is this needed?
|
||||
"../../../base:rtc_base_approved",
|
||||
"../../../rtc_base:protobuf_utils", # TODO(kwiberg): Why is this needed?
|
||||
"../../../rtc_base:rtc_base_approved",
|
||||
"../../../test:audio_codec_mocks",
|
||||
"../../../test:test_support",
|
||||
"../g722:audio_decoder_g722",
|
||||
|
|
|
@ -21,7 +21,7 @@ rtc_source_set("video_codecs_api") {
|
|||
deps = [
|
||||
"..:video_frame_api",
|
||||
"../..:webrtc_common",
|
||||
"../../base:rtc_base_approved",
|
||||
"../../common_video",
|
||||
"../../rtc_base:rtc_base_approved",
|
||||
]
|
||||
}
|
||||
|
|
|
@ -39,8 +39,6 @@ rtc_static_library("audio") {
|
|||
"../api:call_api",
|
||||
"../api/audio_codecs:audio_codecs_api",
|
||||
"../api/audio_codecs:builtin_audio_encoder_factory",
|
||||
"../base:rtc_base_approved",
|
||||
"../base:rtc_task_queue",
|
||||
"../call:call_interfaces",
|
||||
"../call:rtp_interfaces",
|
||||
"../common_audio",
|
||||
|
@ -52,6 +50,8 @@ rtc_static_library("audio") {
|
|||
"../modules/pacing:pacing",
|
||||
"../modules/remote_bitrate_estimator:remote_bitrate_estimator",
|
||||
"../modules/rtp_rtcp:rtp_rtcp",
|
||||
"../rtc_base:rtc_base_approved",
|
||||
"../rtc_base:rtc_task_queue",
|
||||
"../system_wrappers",
|
||||
"../voice_engine",
|
||||
]
|
||||
|
@ -80,14 +80,14 @@ if (rtc_include_tests) {
|
|||
deps = [
|
||||
":audio",
|
||||
"../api:mock_audio_mixer",
|
||||
"../base:rtc_base_approved",
|
||||
"../base:rtc_task_queue",
|
||||
"../call:rtp_receiver",
|
||||
"../modules/audio_device:mock_audio_device",
|
||||
"../modules/audio_mixer:audio_mixer_impl",
|
||||
"../modules/congestion_controller:congestion_controller",
|
||||
"../modules/congestion_controller:mock_congestion_controller",
|
||||
"../modules/pacing:pacing",
|
||||
"../rtc_base:rtc_base_approved",
|
||||
"../rtc_base:rtc_task_queue",
|
||||
"../test:test_common",
|
||||
"../test:test_support",
|
||||
"utility:utility_tests",
|
||||
|
@ -151,8 +151,8 @@ if (rtc_include_tests) {
|
|||
"test/audio_bwe_integration_test.h",
|
||||
]
|
||||
deps = [
|
||||
"../base:rtc_base_approved",
|
||||
"../common_audio",
|
||||
"../rtc_base:rtc_base_approved",
|
||||
"../system_wrappers",
|
||||
"../test:fake_audio_device",
|
||||
"../test:field_trial",
|
||||
|
|
|
@ -21,9 +21,9 @@ rtc_static_library("audio_frame_operations") {
|
|||
|
||||
deps = [
|
||||
"../..:webrtc_common",
|
||||
"../../base:rtc_base_approved",
|
||||
"../../modules:module_api",
|
||||
"../../modules/audio_coding:audio_format_conversion",
|
||||
"../../rtc_base:rtc_base_approved",
|
||||
]
|
||||
}
|
||||
|
||||
|
@ -35,8 +35,8 @@ if (rtc_include_tests) {
|
|||
]
|
||||
deps = [
|
||||
":audio_frame_operations",
|
||||
"../../base:rtc_base_approved",
|
||||
"../../modules:module_api",
|
||||
"../../rtc_base:rtc_base_approved",
|
||||
"../../test:test_support",
|
||||
"//testing/gtest",
|
||||
]
|
||||
|
|
|
@ -1,135 +0,0 @@
|
|||
# Copyright (c) 2014 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("//build/config/crypto.gni")
|
||||
import("//build/config/ui.gni")
|
||||
import("../webrtc.gni")
|
||||
|
||||
if (is_android) {
|
||||
import("//build/config/android/config.gni")
|
||||
import("//build/config/android/rules.gni")
|
||||
}
|
||||
if (is_win) {
|
||||
import("//build/config/clang/clang.gni")
|
||||
}
|
||||
|
||||
group("base") {
|
||||
public_deps = [
|
||||
":rtc_base",
|
||||
":rtc_base_approved",
|
||||
":rtc_task_queue",
|
||||
":sequenced_task_checker",
|
||||
":weak_ptr",
|
||||
]
|
||||
}
|
||||
|
||||
if (!rtc_build_ssl) {
|
||||
config("external_ssl_library") {
|
||||
assert(rtc_ssl_root != "",
|
||||
"You must specify rtc_ssl_root when rtc_build_ssl==0.")
|
||||
include_dirs = [ rtc_ssl_root ]
|
||||
}
|
||||
}
|
||||
|
||||
# The targets below are deprecated and only exist here temporarily during
|
||||
# refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
|
||||
group("protobuf_utils") {
|
||||
public_deps = [ "../rtc_base:protobuf_utils" ]
|
||||
}
|
||||
|
||||
group("compile_assert_c") {
|
||||
public_deps = [ "../rtc_base:compile_assert_c" ]
|
||||
}
|
||||
|
||||
group("rtc_base_approved") {
|
||||
public_deps = [ "../rtc_base:rtc_base_approved" ]
|
||||
}
|
||||
|
||||
group("rtc_task_queue") {
|
||||
public_deps = [ "../rtc_base:rtc_task_queue" ]
|
||||
}
|
||||
|
||||
group("sequenced_task_checker") {
|
||||
public_deps = [ "../rtc_base:sequenced_task_checker" ]
|
||||
}
|
||||
|
||||
group("weak_ptr") {
|
||||
public_deps = [ "../rtc_base:weak_ptr" ]
|
||||
}
|
||||
|
||||
group("rtc_numerics") {
|
||||
public_deps = [ "../rtc_base:rtc_numerics" ]
|
||||
}
|
||||
|
||||
group("rtc_json") {
|
||||
public_deps = [ "../rtc_base:rtc_json" ]
|
||||
}
|
||||
|
||||
group("rtc_base") {
|
||||
public_deps = [ "../rtc_base:rtc_base" ]
|
||||
}
|
||||
|
||||
group("gtest_prod") {
|
||||
public_deps = [ "../rtc_base:gtest_prod" ]
|
||||
}
|
||||
|
||||
group("rtc_base_tests_utils") {
|
||||
testonly = true
|
||||
public_deps = [ "../rtc_base:rtc_base_tests_utils" ]
|
||||
}
|
||||
|
||||
if (rtc_include_tests) {
|
||||
group("rtc_base_tests_main") {
|
||||
testonly = true
|
||||
public_deps = [ "../rtc_base:rtc_base_tests_main" ]
|
||||
}
|
||||
|
||||
group("rtc_base_nonparallel_tests") {
|
||||
testonly = true
|
||||
public_deps = [ "../rtc_base:rtc_base_nonparallel_tests" ]
|
||||
}
|
||||
|
||||
group("rtc_base_approved_unittests") {
|
||||
testonly = true
|
||||
public_deps = [ "../rtc_base:rtc_base_approved_unittests" ]
|
||||
}
|
||||
|
||||
group("sequenced_task_checker_unittests") {
|
||||
testonly = true
|
||||
public_deps = [ "../rtc_base:sequenced_task_checker_unittests" ]
|
||||
}
|
||||
|
||||
group("weak_ptr_unittests") {
|
||||
testonly = true
|
||||
public_deps = [ "../rtc_base:weak_ptr_unittests" ]
|
||||
}
|
||||
|
||||
group("rtc_task_queue_unittests") {
|
||||
testonly = true
|
||||
public_deps = [ "../rtc_base:rtc_task_queue_unittests" ]
|
||||
}
|
||||
|
||||
|
||||
group("rtc_numerics_unittests") {
|
||||
testonly = true
|
||||
public_deps = [ "../rtc_base:rtc_numerics_unittests" ]
|
||||
}
|
||||
|
||||
group("rtc_base_unittests") {
|
||||
testonly = true
|
||||
public_deps = [ "../rtc_base:rtc_base_unittests" ]
|
||||
}
|
||||
}
|
||||
|
||||
if (is_android) {
|
||||
android_library("base_java") {
|
||||
java_files = [ "Dummy.java" ] # Need one file to avoid hitting an assert.
|
||||
deps = [ "../rtc_base:base_java" ]
|
||||
}
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
/**
|
||||
* This class only exists as glue in a transition.
|
||||
* TODO(kjellander): Remove.
|
||||
* See https://bugs.webrtc.org/7634 for more details.
|
||||
*/
|
||||
class Dummy {
|
||||
Dummy() {
|
||||
}
|
||||
}
|
20
webrtc/base/README.md
Normal file
20
webrtc/base/README.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# What?
|
||||
|
||||
The contents of base have moved to rtc_base.
|
||||
|
||||
# Why?
|
||||
|
||||
We want to move all the contents in the webrtc directory to top-level, because:
|
||||
* When we migrate from Rietveld to PolyGerrit we won't be able to apply WebRTC
|
||||
patches on Chromium trybots (which is a very useful feature, especially as we
|
||||
plan to have such trybots in our default trybot set).
|
||||
This is because PolyGerrit needs the repo in Chromium to be the same as the
|
||||
WebRTC repo, otherwise it won’t be able to apply the patch.
|
||||
* To fully automate rolling into Chromium DEPS, we wish to use the LKGR finder,
|
||||
but doing so is blocked on this (needs the same revision hashes to avoid ugly
|
||||
hacks). See [this bug](http://crbug.com/666726).
|
||||
|
||||
# Tracking Bugs
|
||||
|
||||
[Chromium tracking bug](http://crbug.com/611808)
|
||||
[WebRTC tracking bug](https://bugs.chromium.org/p/webrtc/issues/detail?id=7634)
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2015 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_ARRAY_VIEW_H_
|
||||
#define WEBRTC_BASE_ARRAY_VIEW_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/array_view.h"
|
||||
|
||||
#endif // WEBRTC_BASE_ARRAY_VIEW_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright (c) 2015 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_ARRAYSIZE_H_
|
||||
#define WEBRTC_BASE_ARRAYSIZE_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/arraysize.h"
|
||||
|
||||
#endif // WEBRTC_BASE_ARRAYSIZE_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2014 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_ASYNCINVOKER_INL_H_
|
||||
#define WEBRTC_BASE_ASYNCINVOKER_INL_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/asyncinvoker-inl.h"
|
||||
|
||||
#endif // WEBRTC_BASE_ASYNCINVOKER_INL_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2014 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_ASYNCINVOKER_H_
|
||||
#define WEBRTC_BASE_ASYNCINVOKER_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/asyncinvoker.h"
|
||||
|
||||
#endif // WEBRTC_BASE_ASYNCINVOKER_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_ASYNCPACKETSOCKET_H_
|
||||
#define WEBRTC_BASE_ASYNCPACKETSOCKET_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/asyncpacketsocket.h"
|
||||
|
||||
#endif // WEBRTC_BASE_ASYNCPACKETSOCKET_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2013 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_ASYNCRESOLVERINTERFACE_H_
|
||||
#define WEBRTC_BASE_ASYNCRESOLVERINTERFACE_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/asyncresolverinterface.h"
|
||||
|
||||
#endif
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_ASYNCSOCKET_H_
|
||||
#define WEBRTC_BASE_ASYNCSOCKET_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/asyncsocket.h"
|
||||
|
||||
#endif // WEBRTC_BASE_ASYNCSOCKET_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_ASYNCTCPSOCKET_H_
|
||||
#define WEBRTC_BASE_ASYNCTCPSOCKET_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/asynctcpsocket.h"
|
||||
|
||||
#endif // WEBRTC_BASE_ASYNCTCPSOCKET_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_ASYNCUDPSOCKET_H_
|
||||
#define WEBRTC_BASE_ASYNCUDPSOCKET_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/asyncudpsocket.h"
|
||||
|
||||
#endif // WEBRTC_BASE_ASYNCUDPSOCKET_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_ATOMICOPS_H_
|
||||
#define WEBRTC_BASE_ATOMICOPS_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/atomicops.h"
|
||||
|
||||
#endif // WEBRTC_BASE_ATOMICOPS_H_
|
|
@ -1,20 +0,0 @@
|
|||
|
||||
//*********************************************************************
|
||||
//* C_Base64 - a simple base64 encoder and decoder.
|
||||
//*
|
||||
//* Copyright (c) 1999, Bob Withers - bwit@pobox.com
|
||||
//*
|
||||
//* This code may be freely used for any purpose, either personal
|
||||
//* or commercial, provided the authors copyright notice remains
|
||||
//* intact.
|
||||
//*********************************************************************
|
||||
|
||||
#ifndef WEBRTC_BASE_BASE64_H_
|
||||
#define WEBRTC_BASE_BASE64_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/base64.h"
|
||||
|
||||
#endif // WEBRTC_BASE_BASE64_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_BASICTYPES_H_
|
||||
#define WEBRTC_BASE_BASICTYPES_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/basictypes.h"
|
||||
|
||||
#endif // WEBRTC_BASE_BASICTYPES_H_
|
|
@ -1,69 +0,0 @@
|
|||
/*
|
||||
* Copyright 2012 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.
|
||||
*/
|
||||
|
||||
// Bind() is an overloaded function that converts method calls into function
|
||||
// objects (aka functors). The method object is captured as a scoped_refptr<> if
|
||||
// possible, and as a raw pointer otherwise. Any arguments to the method are
|
||||
// captured by value. The return value of Bind is a stateful, nullary function
|
||||
// object. Care should be taken about the lifetime of objects captured by
|
||||
// Bind(); the returned functor knows nothing about the lifetime of a non
|
||||
// ref-counted method object or any arguments passed by pointer, and calling the
|
||||
// functor with a destroyed object will surely do bad things.
|
||||
//
|
||||
// To prevent the method object from being captured as a scoped_refptr<>, you
|
||||
// can use Unretained. But this should only be done when absolutely necessary,
|
||||
// and when the caller knows the extra reference isn't needed.
|
||||
//
|
||||
// Example usage:
|
||||
// struct Foo {
|
||||
// int Test1() { return 42; }
|
||||
// int Test2() const { return 52; }
|
||||
// int Test3(int x) { return x*x; }
|
||||
// float Test4(int x, float y) { return x + y; }
|
||||
// };
|
||||
//
|
||||
// int main() {
|
||||
// Foo foo;
|
||||
// cout << rtc::Bind(&Foo::Test1, &foo)() << endl;
|
||||
// cout << rtc::Bind(&Foo::Test2, &foo)() << endl;
|
||||
// cout << rtc::Bind(&Foo::Test3, &foo, 3)() << endl;
|
||||
// cout << rtc::Bind(&Foo::Test4, &foo, 7, 8.5f)() << endl;
|
||||
// }
|
||||
//
|
||||
// Example usage of ref counted objects:
|
||||
// struct Bar {
|
||||
// int AddRef();
|
||||
// int Release();
|
||||
//
|
||||
// void Test() {}
|
||||
// void BindThis() {
|
||||
// // The functor passed to AsyncInvoke() will keep this object alive.
|
||||
// invoker.AsyncInvoke(RTC_FROM_HERE,rtc::Bind(&Bar::Test, this));
|
||||
// }
|
||||
// };
|
||||
//
|
||||
// int main() {
|
||||
// rtc::scoped_refptr<Bar> bar = new rtc::RefCountedObject<Bar>();
|
||||
// auto functor = rtc::Bind(&Bar::Test, bar);
|
||||
// bar = nullptr;
|
||||
// // The functor stores an internal scoped_refptr<Bar>, so this is safe.
|
||||
// functor();
|
||||
// }
|
||||
//
|
||||
|
||||
#ifndef WEBRTC_BASE_BIND_H_
|
||||
#define WEBRTC_BASE_BIND_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/bind.h"
|
||||
|
||||
#endif // WEBRTC_BASE_BIND_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2015 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_BITBUFFER_H_
|
||||
#define WEBRTC_BASE_BITBUFFER_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/bitbuffer.h"
|
||||
|
||||
#endif // WEBRTC_BASE_BITBUFFER_H_
|
|
@ -1,18 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_BUFFER_H_
|
||||
#define WEBRTC_BASE_BUFFER_H_
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/buffer.h"
|
||||
|
||||
#endif // WEBRTC_BASE_BUFFER_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2015 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_BUFFERQUEUE_H_
|
||||
#define WEBRTC_BASE_BUFFERQUEUE_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/bufferqueue.h"
|
||||
|
||||
#endif // WEBRTC_BASE_BUFFERQUEUE_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_BYTEBUFFER_H_
|
||||
#define WEBRTC_BASE_BYTEBUFFER_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/bytebuffer.h"
|
||||
|
||||
#endif // WEBRTC_BASE_BYTEBUFFER_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_BYTEORDER_H_
|
||||
#define WEBRTC_BASE_BYTEORDER_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/byteorder.h"
|
||||
|
||||
#endif // WEBRTC_BASE_BYTEORDER_H_
|
|
@ -1,70 +0,0 @@
|
|||
// This file was GENERATED by command:
|
||||
// pump.py callback.h.pump
|
||||
// DO NOT EDIT BY HAND!!!
|
||||
|
||||
/*
|
||||
* Copyright 2012 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.
|
||||
*/
|
||||
|
||||
// To generate callback.h from callback.h.pump, execute:
|
||||
// /home/build/google3/third_party/gtest/scripts/pump.py callback.h.pump
|
||||
|
||||
// Callbacks are callable object containers. They can hold a function pointer
|
||||
// or a function object and behave like a value type. Internally, data is
|
||||
// reference-counted, making copies and pass-by-value inexpensive.
|
||||
//
|
||||
// Callbacks are typed using template arguments. The format is:
|
||||
// CallbackN<ReturnType, ParamType1, ..., ParamTypeN>
|
||||
// where N is the number of arguments supplied to the callable object.
|
||||
// Callbacks are invoked using operator(), just like a function or a function
|
||||
// object. Default-constructed callbacks are "empty," and executing an empty
|
||||
// callback does nothing. A callback can be made empty by assigning it from
|
||||
// a default-constructed callback.
|
||||
//
|
||||
// Callbacks are similar in purpose to std::function (which isn't available on
|
||||
// all platforms we support) and a lightweight alternative to sigslots. Since
|
||||
// they effectively hide the type of the object they call, they're useful in
|
||||
// breaking dependencies between objects that need to interact with one another.
|
||||
// Notably, they can hold the results of Bind(), std::bind*, etc, without
|
||||
// needing
|
||||
// to know the resulting object type of those calls.
|
||||
//
|
||||
// Sigslots, on the other hand, provide a fuller feature set, such as multiple
|
||||
// subscriptions to a signal, optional thread-safety, and lifetime tracking of
|
||||
// slots. When these features are needed, choose sigslots.
|
||||
//
|
||||
// Example:
|
||||
// int sqr(int x) { return x * x; }
|
||||
// struct AddK {
|
||||
// int k;
|
||||
// int operator()(int x) const { return x + k; }
|
||||
// } add_k = {5};
|
||||
//
|
||||
// Callback1<int, int> my_callback;
|
||||
// cout << my_callback.empty() << endl; // true
|
||||
//
|
||||
// my_callback = Callback1<int, int>(&sqr);
|
||||
// cout << my_callback.empty() << endl; // false
|
||||
// cout << my_callback(3) << endl; // 9
|
||||
//
|
||||
// my_callback = Callback1<int, int>(add_k);
|
||||
// cout << my_callback(10) << endl; // 15
|
||||
//
|
||||
// my_callback = Callback1<int, int>();
|
||||
// cout << my_callback.empty() << endl; // true
|
||||
|
||||
#ifndef WEBRTC_BASE_CALLBACK_H_
|
||||
#define WEBRTC_BASE_CALLBACK_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/callback.h"
|
||||
|
||||
#endif // WEBRTC_BASE_CALLBACK_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2006 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_CHECKS_H_
|
||||
#define WEBRTC_BASE_CHECKS_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/checks.h"
|
||||
|
||||
#endif // WEBRTC_BASE_CHECKS_H_
|
|
@ -1,18 +0,0 @@
|
|||
/*
|
||||
* Copyright (c) 2012 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_COMPILE_ASSERT_C_H_
|
||||
#define WEBRTC_BASE_COMPILE_ASSERT_C_H_
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/compile_assert_c.h"
|
||||
|
||||
#endif // WEBRTC_BASE_COMPILE_ASSERT_C_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_CONSTRUCTORMAGIC_H_
|
||||
#define WEBRTC_BASE_CONSTRUCTORMAGIC_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/constructormagic.h"
|
||||
|
||||
#endif // WEBRTC_BASE_CONSTRUCTORMAGIC_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_COPYONWRITEBUFFER_H_
|
||||
#define WEBRTC_BASE_COPYONWRITEBUFFER_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/copyonwritebuffer.h"
|
||||
|
||||
#endif // WEBRTC_BASE_COPYONWRITEBUFFER_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright (c) 2017 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_CPU_TIME_H_
|
||||
#define WEBRTC_BASE_CPU_TIME_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/cpu_time.h"
|
||||
|
||||
#endif // WEBRTC_BASE_CPU_TIME_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2012 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_CRC32_H_
|
||||
#define WEBRTC_BASE_CRC32_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/crc32.h"
|
||||
|
||||
#endif // WEBRTC_BASE_CRC32_H_
|
|
@ -1,18 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_CRITICALSECTION_H_
|
||||
#define WEBRTC_BASE_CRITICALSECTION_H_
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/criticalsection.h"
|
||||
|
||||
#endif // WEBRTC_BASE_CRITICALSECTION_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_CRYPTSTRING_H_
|
||||
#define WEBRTC_BASE_CRYPTSTRING_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/cryptstring.h"
|
||||
|
||||
#endif // WEBRTC_BASE_CRYPTSTRING_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright (c) 2015 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_DEPRECATION_H_
|
||||
#define WEBRTC_BASE_DEPRECATION_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/deprecation.h"
|
||||
|
||||
#endif // WEBRTC_BASE_DEPRECATION_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2013 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_DSCP_H_
|
||||
#define WEBRTC_BASE_DSCP_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/dscp.h"
|
||||
|
||||
#endif // WEBRTC_BASE_DSCP_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_EVENT_H_
|
||||
#define WEBRTC_BASE_EVENT_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/event.h"
|
||||
|
||||
#endif // WEBRTC_BASE_EVENT_H_
|
|
@ -1,34 +0,0 @@
|
|||
/*
|
||||
* Copyright (c) 2012 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.
|
||||
*/
|
||||
|
||||
// This file defines the interface for event tracing in WebRTC.
|
||||
//
|
||||
// Event log handlers are set through SetupEventTracer(). User of this API will
|
||||
// provide two function pointers to handle event tracing calls.
|
||||
//
|
||||
// * GetCategoryEnabledPtr
|
||||
// Event tracing system calls this function to determine if a particular
|
||||
// event category is enabled.
|
||||
//
|
||||
// * AddTraceEventPtr
|
||||
// Adds a tracing event. It is the user's responsibility to log the data
|
||||
// provided.
|
||||
//
|
||||
// Parameters for the above two functions are described in trace_event.h.
|
||||
|
||||
#ifndef WEBRTC_BASE_EVENT_TRACER_H_
|
||||
#define WEBRTC_BASE_EVENT_TRACER_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/event_tracer.h"
|
||||
|
||||
#endif // WEBRTC_BASE_EVENT_TRACER_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_FAKECLOCK_H_
|
||||
#define WEBRTC_BASE_FAKECLOCK_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/fakeclock.h"
|
||||
|
||||
#endif // WEBRTC_BASE_FAKECLOCK_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2009 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_FAKENETWORK_H_
|
||||
#define WEBRTC_BASE_FAKENETWORK_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/fakenetwork.h"
|
||||
|
||||
#endif // WEBRTC_BASE_FAKENETWORK_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2012 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_FAKESSLIDENTITY_H_
|
||||
#define WEBRTC_BASE_FAKESSLIDENTITY_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/fakesslidentity.h"
|
||||
|
||||
#endif // WEBRTC_BASE_FAKESSLIDENTITY_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright (c) 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_FILE_H_
|
||||
#define WEBRTC_BASE_FILE_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/file.h"
|
||||
|
||||
#endif // WEBRTC_BASE_FILE_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2015 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_FILEROTATINGSTREAM_H_
|
||||
#define WEBRTC_BASE_FILEROTATINGSTREAM_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/filerotatingstream.h"
|
||||
|
||||
#endif // WEBRTC_BASE_FILEROTATINGSTREAM_H_
|
|
@ -1,20 +0,0 @@
|
|||
|
||||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_FILEUTILS_H_
|
||||
#define WEBRTC_BASE_FILEUTILS_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/fileutils.h"
|
||||
|
||||
#endif // WEBRTC_BASE_FILEUTILS_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_FIREWALLSOCKETSERVER_H_
|
||||
#define WEBRTC_BASE_FIREWALLSOCKETSERVER_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/firewallsocketserver.h"
|
||||
|
||||
#endif // WEBRTC_BASE_FIREWALLSOCKETSERVER_H_
|
|
@ -1,31 +0,0 @@
|
|||
/*
|
||||
* Copyright 2006 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.
|
||||
*/
|
||||
|
||||
|
||||
// Originally comes from shared/commandlineflags/flags.h
|
||||
|
||||
// Flags are defined and declared using DEFINE_xxx and DECLARE_xxx macros,
|
||||
// where xxx is the flag type. Flags are referred to via FLAG_yyy,
|
||||
// where yyy is the flag name. For intialization and iteration of flags,
|
||||
// see the FlagList class. For full programmatic access to any
|
||||
// flag, see the Flag class.
|
||||
//
|
||||
// The implementation only relies and basic C++ functionality
|
||||
// and needs no special library or STL support.
|
||||
|
||||
#ifndef WEBRTC_BASE_FLAGS_H_
|
||||
#define WEBRTC_BASE_FLAGS_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/flags.h"
|
||||
|
||||
#endif // SHARED_COMMANDLINEFLAGS_FLAGS_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright (c) 2014 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_FORMAT_MACROS_H_
|
||||
#define WEBRTC_BASE_FORMAT_MACROS_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/format_macros.h"
|
||||
|
||||
#endif // WEBRTC_BASE_FORMAT_MACROS_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_FUNCTION_VIEW_H_
|
||||
#define WEBRTC_BASE_FUNCTION_VIEW_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/function_view.h"
|
||||
|
||||
#endif // WEBRTC_BASE_FUNCTION_VIEW_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright (c) 2012 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_GTEST_PROD_UTIL_H_
|
||||
#define WEBRTC_BASE_GTEST_PROD_UTIL_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/gtest_prod_util.h"
|
||||
|
||||
#endif // WEBRTC_BASE_GTEST_PROD_UTIL_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_GUNIT_H_
|
||||
#define WEBRTC_BASE_GUNIT_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/gunit.h"
|
||||
|
||||
#endif // WEBRTC_BASE_GUNIT_H_
|
|
@ -1,18 +0,0 @@
|
|||
/*
|
||||
* Copyright 2012 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_GUNIT_PROD_H_
|
||||
#define WEBRTC_BASE_GUNIT_PROD_H_
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/gunit_prod.h"
|
||||
|
||||
#endif // WEBRTC_BASE_GUNIT_PROD_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_HELPERS_H_
|
||||
#define WEBRTC_BASE_HELPERS_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/helpers.h"
|
||||
|
||||
#endif // WEBRTC_BASE_HELPERS_H_
|
|
@ -1,20 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef WEBRTC_BASE_HTTPBASE_H_
|
||||
#define WEBRTC_BASE_HTTPBASE_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/httpbase.h"
|
||||
|
||||
#endif // WEBRTC_BASE_HTTPBASE_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_HTTPCOMMON_INL_H_
|
||||
#define WEBRTC_BASE_HTTPCOMMON_INL_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/httpcommon-inl.h"
|
||||
|
||||
#endif // WEBRTC_BASE_HTTPCOMMON_INL_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_HTTPCOMMON_H_
|
||||
#define WEBRTC_BASE_HTTPCOMMON_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/httpcommon.h"
|
||||
|
||||
#endif // WEBRTC_BASE_HTTPCOMMON_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_HTTPSERVER_H_
|
||||
#define WEBRTC_BASE_HTTPSERVER_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/httpserver.h"
|
||||
|
||||
#endif // WEBRTC_BASE_HTTPSERVER_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2013 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_IFADDRS_ANDROID_H_
|
||||
#define WEBRTC_BASE_IFADDRS_ANDROID_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/ifaddrs-android.h"
|
||||
|
||||
#endif // WEBRTC_BASE_IFADDRS_ANDROID_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2015 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_IFADDRS_CONVERTER_H_
|
||||
#define WEBRTC_BASE_IFADDRS_CONVERTER_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/ifaddrs_converter.h"
|
||||
|
||||
#endif // WEBRTC_BASE_IFADDRS_CONVERTER_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright (c) 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_IGNORE_WUNDEF_H_
|
||||
#define WEBRTC_BASE_IGNORE_WUNDEF_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/ignore_wundef.h"
|
||||
|
||||
#endif // WEBRTC_BASE_IGNORE_WUNDEF_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_IPADDRESS_H_
|
||||
#define WEBRTC_BASE_IPADDRESS_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/ipaddress.h"
|
||||
|
||||
#endif // WEBRTC_BASE_IPADDRESS_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_JSON_H_
|
||||
#define WEBRTC_BASE_JSON_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/json.h"
|
||||
|
||||
#endif // WEBRTC_BASE_JSON_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2015 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_KEEP_REF_UNTIL_DONE_H_
|
||||
#define WEBRTC_BASE_KEEP_REF_UNTIL_DONE_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/keep_ref_until_done.h"
|
||||
|
||||
#endif // WEBRTC_BASE_KEEP_REF_UNTIL_DONE_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_LOCATION_H_
|
||||
#define WEBRTC_BASE_LOCATION_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/location.h"
|
||||
|
||||
#endif // WEBRTC_BASE_LOCATION_H_
|
|
@ -1,54 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
// LOG(...) an ostream target that can be used to send formatted
|
||||
// output to a variety of logging targets, such as debugger console, stderr,
|
||||
// or any LogSink.
|
||||
// The severity level passed as the first argument to the LOGging
|
||||
// functions is used as a filter, to limit the verbosity of the logging.
|
||||
// Static members of LogMessage documented below are used to control the
|
||||
// verbosity and target of the output.
|
||||
// There are several variations on the LOG macro which facilitate logging
|
||||
// of common error conditions, detailed below.
|
||||
|
||||
// LOG(sev) logs the given stream at severity "sev", which must be a
|
||||
// compile-time constant of the LoggingSeverity type, without the namespace
|
||||
// prefix.
|
||||
// LOG_V(sev) Like LOG(), but sev is a run-time variable of the LoggingSeverity
|
||||
// type (basically, it just doesn't prepend the namespace).
|
||||
// LOG_F(sev) Like LOG(), but includes the name of the current function.
|
||||
// LOG_T(sev) Like LOG(), but includes the this pointer.
|
||||
// LOG_T_F(sev) Like LOG_F(), but includes the this pointer.
|
||||
// LOG_GLE(M)(sev [, mod]) attempt to add a string description of the
|
||||
// HRESULT returned by GetLastError. The "M" variant allows searching of a
|
||||
// DLL's string table for the error description.
|
||||
// LOG_ERRNO(sev) attempts to add a string description of an errno-derived
|
||||
// error. errno and associated facilities exist on both Windows and POSIX,
|
||||
// but on Windows they only apply to the C/C++ runtime.
|
||||
// LOG_ERR(sev) is an alias for the platform's normal error system, i.e. _GLE on
|
||||
// Windows and _ERRNO on POSIX.
|
||||
// (The above three also all have _EX versions that let you specify the error
|
||||
// code, rather than using the last one.)
|
||||
// LOG_E(sev, ctx, err, ...) logs a detailed error interpreted using the
|
||||
// specified context.
|
||||
// LOG_CHECK_LEVEL(sev) (and LOG_CHECK_LEVEL_V(sev)) can be used as a test
|
||||
// before performing expensive or sensitive operations whose sole purpose is
|
||||
// to output logging data at the desired level.
|
||||
// Lastly, PLOG(sev, err) is an alias for LOG_ERR_EX.
|
||||
|
||||
#ifndef WEBRTC_BASE_LOGGING_H_
|
||||
#define WEBRTC_BASE_LOGGING_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/logging.h"
|
||||
|
||||
#endif // WEBRTC_BASE_LOGGING_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2015 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_LOGSINKS_H_
|
||||
#define WEBRTC_BASE_LOGSINKS_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/logsinks.h"
|
||||
|
||||
#endif // WEBRTC_BASE_LOGSINKS_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2007 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_MACUTILS_H_
|
||||
#define WEBRTC_BASE_MACUTILS_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/macutils.h"
|
||||
|
||||
#endif // WEBRTC_BASE_MACUTILS_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2005 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_MATHUTILS_H_
|
||||
#define WEBRTC_BASE_MATHUTILS_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/mathutils.h"
|
||||
|
||||
#endif // WEBRTC_BASE_MATHUTILS_H_
|
|
@ -1,31 +0,0 @@
|
|||
/*
|
||||
* This is the header file for the MD5 message-digest algorithm.
|
||||
* The algorithm is due to Ron Rivest. This code was
|
||||
* written by Colin Plumb in 1993, no copyright is claimed.
|
||||
* This code is in the public domain; do with it what you wish.
|
||||
*
|
||||
* Equivalent code is available from RSA Data Security, Inc.
|
||||
* This code has been tested against that, and is equivalent,
|
||||
* except that you don't need to include two pages of legalese
|
||||
* with every copy.
|
||||
* To compute the message digest of a chunk of bytes, declare an
|
||||
* MD5Context structure, pass it to MD5Init, call MD5Update as
|
||||
* needed on buffers full of bytes, and then call MD5Final, which
|
||||
* will fill a supplied 16-byte array with the digest.
|
||||
*
|
||||
*/
|
||||
|
||||
// Changes(fbarchard): Ported to C++ and Google style guide.
|
||||
// Made context first parameter in MD5Final for consistency with Sha1.
|
||||
// Changes(hellner): added rtc namespace
|
||||
// Changes(pbos): Reverted types back to uint32(8)_t with _t suffix.
|
||||
|
||||
#ifndef WEBRTC_BASE_MD5_H_
|
||||
#define WEBRTC_BASE_MD5_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/md5.h"
|
||||
|
||||
#endif // WEBRTC_BASE_MD5_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2012 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_MD5DIGEST_H_
|
||||
#define WEBRTC_BASE_MD5DIGEST_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/md5digest.h"
|
||||
|
||||
#endif // WEBRTC_BASE_MD5DIGEST_H_
|
|
@ -1,18 +0,0 @@
|
|||
/*
|
||||
* Copyright (c) 2017 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.
|
||||
*/
|
||||
#ifndef WEBRTC_BASE_MEMORY_USAGE_H_
|
||||
#define WEBRTC_BASE_MEMORY_USAGE_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/memory_usage.h"
|
||||
|
||||
#endif // WEBRTC_BASE_MEMORY_USAGE_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_MESSAGEDIGEST_H_
|
||||
#define WEBRTC_BASE_MESSAGEDIGEST_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/messagedigest.h"
|
||||
|
||||
#endif // WEBRTC_BASE_MESSAGEDIGEST_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_MESSAGEHANDLER_H_
|
||||
#define WEBRTC_BASE_MESSAGEHANDLER_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/messagehandler.h"
|
||||
|
||||
#endif // WEBRTC_BASE_MESSAGEHANDLER_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_MESSAGEQUEUE_H_
|
||||
#define WEBRTC_BASE_MESSAGEQUEUE_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/messagequeue.h"
|
||||
|
||||
#endif // WEBRTC_BASE_MESSAGEQUEUE_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright (c) 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_MOD_OPS_H_
|
||||
#define WEBRTC_BASE_MOD_OPS_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/mod_ops.h"
|
||||
|
||||
#endif // WEBRTC_BASE_MOD_OPS_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_NATSERVER_H_
|
||||
#define WEBRTC_BASE_NATSERVER_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/natserver.h"
|
||||
|
||||
#endif // WEBRTC_BASE_NATSERVER_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_NATSOCKETFACTORY_H_
|
||||
#define WEBRTC_BASE_NATSOCKETFACTORY_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/natsocketfactory.h"
|
||||
|
||||
#endif // WEBRTC_BASE_NATSOCKETFACTORY_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_NATTYPES_H_
|
||||
#define WEBRTC_BASE_NATTYPES_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/nattypes.h"
|
||||
|
||||
#endif // WEBRTC_BASE_NATTYPES_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2008 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_NETHELPERS_H_
|
||||
#define WEBRTC_BASE_NETHELPERS_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/nethelpers.h"
|
||||
|
||||
#endif // WEBRTC_BASE_NETHELPERS_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_NETWORK_H_
|
||||
#define WEBRTC_BASE_NETWORK_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/network.h"
|
||||
|
||||
#endif // WEBRTC_BASE_NETWORK_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2015 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_NETWORKMONITOR_H_
|
||||
#define WEBRTC_BASE_NETWORKMONITOR_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/networkmonitor.h"
|
||||
|
||||
#endif // WEBRTC_BASE_NETWORKMONITOR_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_NETWORKROUTE_H_
|
||||
#define WEBRTC_BASE_NETWORKROUTE_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/networkroute.h"
|
||||
|
||||
#endif // WEBRTC_BASE_NETWORKROUTE_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2012 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_NULLSOCKETSERVER_H_
|
||||
#define WEBRTC_BASE_NULLSOCKETSERVER_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/nullsocketserver.h"
|
||||
|
||||
#endif // WEBRTC_BASE_NULLSOCKETSERVER_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright (c) 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_NUMERICS_EXP_FILTER_H_
|
||||
#define WEBRTC_BASE_NUMERICS_EXP_FILTER_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/numerics/exp_filter.h"
|
||||
|
||||
#endif // WEBRTC_BASE_NUMERICS_EXP_FILTER_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright (c) 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_NUMERICS_PERCENTILE_FILTER_H_
|
||||
#define WEBRTC_BASE_NUMERICS_PERCENTILE_FILTER_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/numerics/percentile_filter.h"
|
||||
|
||||
#endif // WEBRTC_BASE_NUMERICS_PERCENTILE_FILTER_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright (c) 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_ONETIMEEVENT_H_
|
||||
#define WEBRTC_BASE_ONETIMEEVENT_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/onetimeevent.h"
|
||||
|
||||
#endif // WEBRTC_BASE_ONETIMEEVENT_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2013 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_OPENSSL_H_
|
||||
#define WEBRTC_BASE_OPENSSL_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/openssl.h"
|
||||
|
||||
#endif // WEBRTC_BASE_OPENSSL_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_OPENSSLADAPTER_H_
|
||||
#define WEBRTC_BASE_OPENSSLADAPTER_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/openssladapter.h"
|
||||
|
||||
#endif // WEBRTC_BASE_OPENSSLADAPTER_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_OPENSSLDIGEST_H_
|
||||
#define WEBRTC_BASE_OPENSSLDIGEST_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/openssldigest.h"
|
||||
|
||||
#endif // WEBRTC_BASE_OPENSSLDIGEST_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_OPENSSLIDENTITY_H_
|
||||
#define WEBRTC_BASE_OPENSSLIDENTITY_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/opensslidentity.h"
|
||||
|
||||
#endif // WEBRTC_BASE_OPENSSLIDENTITY_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_OPENSSLSTREAMADAPTER_H_
|
||||
#define WEBRTC_BASE_OPENSSLSTREAMADAPTER_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/opensslstreamadapter.h"
|
||||
|
||||
#endif // WEBRTC_BASE_OPENSSLSTREAMADAPTER_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2015 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_OPTIONAL_H_
|
||||
#define WEBRTC_BASE_OPTIONAL_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/optional.h"
|
||||
|
||||
#endif // WEBRTC_BASE_OPTIONAL_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2008 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_OPTIONSFILE_H_
|
||||
#define WEBRTC_BASE_OPTIONSFILE_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/optionsfile.h"
|
||||
|
||||
#endif // WEBRTC_BASE_OPTIONSFILE_H_
|
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright 2004 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.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_BASE_PATHUTILS_H_
|
||||
#define WEBRTC_BASE_PATHUTILS_H_
|
||||
|
||||
|
||||
// This header is deprecated and is just left here temporarily during
|
||||
// refactoring. See https://bugs.webrtc.org/7634 for more details.
|
||||
#include "webrtc/rtc_base/pathutils.h"
|
||||
|
||||
#endif // WEBRTC_BASE_PATHUTILS_H_
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue