(4) Rename files to snake_case: update BUILD.gn, include paths, header guards, and DEPS entries

Mechanically generated by running this command:

tools_webrtc/do-renames.sh update all-renames.txt && git cl format

Then manually updating:

tools_webrtc/sanitizers/tsan_suppressions_webrtc.cc

Bug: webrtc:10159
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Change-Id: I54824cd91dada8fc3ee3d098f971bc319d477833
Reviewed-on: https://webrtc-review.googlesource.com/c/115653
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#26226}
This commit is contained in:
Steve Anton 2019-01-11 09:11:00 -08:00
parent 1c05765831
commit 10542f21c8
1635 changed files with 5341 additions and 5341 deletions

View file

@ -40,7 +40,7 @@ rtc_source_set("call_api") {
rtc_source_set("callfactory_api") { rtc_source_set("callfactory_api") {
visibility = [ "*" ] visibility = [ "*" ]
sources = [ sources = [
"call/callfactoryinterface.h", "call/call_factory_interface.h",
] ]
} }
@ -77,59 +77,59 @@ rtc_static_library("libjingle_peerconnection_api") {
visibility = [ "*" ] visibility = [ "*" ]
cflags = [] cflags = []
sources = [ sources = [
"asyncresolverfactory.h", "async_resolver_factory.h",
"bitrate_constraints.h", "bitrate_constraints.h",
"candidate.cc", "candidate.cc",
"candidate.h", "candidate.h",
"crypto/cryptooptions.cc", "crypto/crypto_options.cc",
"crypto/cryptooptions.h", "crypto/crypto_options.h",
"crypto/framedecryptorinterface.h", "crypto/frame_decryptor_interface.h",
"crypto/frameencryptorinterface.h", "crypto/frame_encryptor_interface.h",
"cryptoparams.h", "crypto_params.h",
"datachannelinterface.cc", "data_channel_interface.cc",
"datachannelinterface.h", "data_channel_interface.h",
"dtlstransportinterface.h", "dtls_transport_interface.h",
"dtmfsenderinterface.h", "dtmf_sender_interface.h",
"jsep.cc", "jsep.cc",
"jsep.h", "jsep.h",
"jsepicecandidate.cc", "jsep_ice_candidate.cc",
"jsepicecandidate.h", "jsep_ice_candidate.h",
"jsepsessiondescription.h", "jsep_session_description.h",
"media_constraints_interface.cc",
"media_constraints_interface.h",
"media_stream_interface.cc",
"media_stream_interface.h",
"media_stream_proxy.h",
"media_stream_track_proxy.h",
"media_transport_interface.cc", "media_transport_interface.cc",
"media_transport_interface.h", "media_transport_interface.h",
"mediaconstraintsinterface.cc", "media_types.cc",
"mediaconstraintsinterface.h", "media_types.h",
"mediastreaminterface.cc",
"mediastreaminterface.h",
"mediastreamproxy.h",
"mediastreamtrackproxy.h",
"mediatypes.cc",
"mediatypes.h",
"notifier.h", "notifier.h",
"peerconnectionfactoryproxy.h", "peer_connection_factory_proxy.h",
"peerconnectioninterface.cc", "peer_connection_interface.cc",
"peerconnectioninterface.h", "peer_connection_interface.h",
"peerconnectionproxy.h", "peer_connection_proxy.h",
"proxy.cc", "proxy.cc",
"proxy.h", "proxy.h",
"rtcerror.cc", "rtc_error.cc",
"rtcerror.h", "rtc_error.h",
"rtp_headers.cc", "rtp_headers.cc",
"rtp_headers.h", "rtp_headers.h",
"rtpparameters.cc", "rtp_parameters.cc",
"rtpparameters.h", "rtp_parameters.h",
"rtpreceiverinterface.cc", "rtp_receiver_interface.cc",
"rtpreceiverinterface.h", "rtp_receiver_interface.h",
"rtpsenderinterface.cc", "rtp_sender_interface.cc",
"rtpsenderinterface.h", "rtp_sender_interface.h",
"rtptransceiverinterface.cc", "rtp_transceiver_interface.cc",
"rtptransceiverinterface.h", "rtp_transceiver_interface.h",
"setremotedescriptionobserverinterface.h", "set_remote_description_observer_interface.h",
"statstypes.cc", "stats_types.cc",
"statstypes.h", "stats_types.h",
"turncustomizer.h", "turn_customizer.h",
"umametrics.h", "uma_metrics.h",
"videosourceproxy.h", "video_track_source_proxy.h",
] ]
deps = [ deps = [
":array_view", ":array_view",
@ -240,16 +240,16 @@ if (rtc_include_tests) {
rtc_source_set("libjingle_logging_api") { rtc_source_set("libjingle_logging_api") {
visibility = [ "*" ] visibility = [ "*" ]
sources = [ sources = [
"rtceventlogoutput.h", "rtc_event_log_output.h",
] ]
} }
rtc_source_set("ortc_api") { rtc_source_set("ortc_api") {
visibility = [ "*" ] visibility = [ "*" ]
sources = [ sources = [
"ortc/packettransportinterface.h", "ortc/packet_transport_interface.h",
"ortc/rtptransportinterface.h", "ortc/rtp_transport_interface.h",
"ortc/srtptransportinterface.h", "ortc/srtp_transport_interface.h",
] ]
deps = [ deps = [
@ -262,10 +262,10 @@ rtc_source_set("rtc_stats_api") {
visibility = [ "*" ] visibility = [ "*" ]
cflags = [] cflags = []
sources = [ sources = [
"stats/rtcstats.h", "stats/rtc_stats.h",
"stats/rtc_stats_collector_callback.h",
"stats/rtc_stats_report.h",
"stats/rtcstats_objects.h", "stats/rtcstats_objects.h",
"stats/rtcstatscollectorcallback.h",
"stats/rtcstatsreport.h",
] ]
deps = [ deps = [
@ -346,7 +346,7 @@ rtc_source_set("array_view") {
rtc_source_set("refcountedbase") { rtc_source_set("refcountedbase") {
visibility = [ "*" ] visibility = [ "*" ]
sources = [ sources = [
"refcountedbase.h", "ref_counted_base.h",
] ]
deps = [ deps = [
"../rtc_base:rtc_base_approved", "../rtc_base:rtc_base_approved",
@ -357,7 +357,7 @@ rtc_source_set("libjingle_peerconnection_test_api") {
visibility = [ "*" ] visibility = [ "*" ]
testonly = true testonly = true
sources = [ sources = [
"test/fakeconstraints.h", "test/fake_constraints.h",
] ]
deps = [ deps = [
@ -666,8 +666,8 @@ if (rtc_include_tests) {
sources = [ sources = [
"array_view_unittest.cc", "array_view_unittest.cc",
"rtcerror_unittest.cc", "rtc_error_unittest.cc",
"rtpparameters_unittest.cc", "rtp_parameters_unittest.cc",
"test/loopback_media_transport_unittest.cc", "test/loopback_media_transport_unittest.cc",
] ]

146
api/DEPS
View file

@ -57,13 +57,13 @@ specific_include_rules = {
"+modules/audio_coding/codecs/opus/audio_encoder_opus.h", "+modules/audio_coding/codecs/opus/audio_encoder_opus.h",
], ],
"asyncresolverfactory\.h": [ "async_resolver_factory\.h": [
"+rtc_base/asyncresolverinterface.h", "+rtc_base/async_resolver_interface.h",
], ],
"candidate\.h": [ "candidate\.h": [
"+rtc_base/network_constants.h", "+rtc_base/network_constants.h",
"+rtc_base/socketaddress.h", "+rtc_base/socket_address.h",
], ],
"create_peerconnection_factory\.h": [ "create_peerconnection_factory\.h": [
@ -71,17 +71,17 @@ specific_include_rules = {
"+rtc_base/scoped_ref_ptr.h", "+rtc_base/scoped_ref_ptr.h",
], ],
"datachannelinterface\.h": [ "data_channel_interface\.h": [
"+rtc_base/copyonwritebuffer.h", "+rtc_base/copy_on_write_buffer.h",
"+rtc_base/refcount.h", "+rtc_base/ref_count.h",
], ],
"dtlstransportinterface\.h": [ "dtls_transport_interface\.h": [
"+rtc_base/refcount.h", "+rtc_base/ref_count.h",
], ],
"dtmfsenderinterface\.h": [ "dtmf_sender_interface\.h": [
"+rtc_base/refcount.h", "+rtc_base/ref_count.h",
], ],
"fec_controller\.h": [ "fec_controller\.h": [
@ -89,118 +89,118 @@ specific_include_rules = {
], ],
"jsep\.h": [ "jsep\.h": [
"+rtc_base/refcount.h", "+rtc_base/ref_count.h",
], ],
"jsepicecandidate\.h": [ "jsep_ice_candidate\.h": [
"+rtc_base/constructormagic.h", "+rtc_base/constructor_magic.h",
], ],
"jsepsessiondescription\.h": [ "jsep_session_description\.h": [
"+rtc_base/constructormagic.h", "+rtc_base/constructor_magic.h",
], ],
"mediastreaminterface\.h": [ "media_stream_interface\.h": [
"+modules/audio_processing/include/audio_processing_statistics.h", "+modules/audio_processing/include/audio_processing_statistics.h",
"+rtc_base/refcount.h", "+rtc_base/ref_count.h",
"+rtc_base/scoped_ref_ptr.h", "+rtc_base/scoped_ref_ptr.h",
], ],
"media_transport_interface\.h": [ "media_transport_interface\.h": [
"+rtc_base/copyonwritebuffer.h", # As used by datachannelinterface.h "+rtc_base/copy_on_write_buffer.h", # As used by datachannelinterface.h
"+rtc_base/networkroute.h", "+rtc_base/network_route.h",
"+rtc_base/deprecation.h", "+rtc_base/deprecation.h",
], ],
"peerconnectionfactoryproxy\.h": [ "peer_connection_factory_proxy\.h": [
"+rtc_base/bind.h", "+rtc_base/bind.h",
], ],
"peerconnectioninterface\.h": [ "peer_connection_interface\.h": [
"+logging/rtc_event_log/rtc_event_log_factory_interface.h", "+logging/rtc_event_log/rtc_event_log_factory_interface.h",
"+media/base/mediaconfig.h", "+media/base/media_config.h",
"+media/base/videocapturer.h", "+media/base/video_capturer.h",
"+media/base/mediaengine.h", "+media/base/media_engine.h",
"+p2p/base/portallocator.h", "+p2p/base/port_allocator.h",
"+rtc_base/bitrateallocationstrategy.h", "+rtc_base/bitrate_allocation_strategy.h",
"+rtc_base/network.h", "+rtc_base/network.h",
"+rtc_base/platform_file.h", "+rtc_base/platform_file.h",
"+rtc_base/rtccertificate.h", "+rtc_base/rtc_certificate.h",
"+rtc_base/rtccertificategenerator.h", "+rtc_base/rtc_certificate_generator.h",
"+rtc_base/socketaddress.h", "+rtc_base/socket_address.h",
"+rtc_base/sslcertificate.h", "+rtc_base/ssl_certificate.h",
"+rtc_base/sslstreamadapter.h", "+rtc_base/ssl_stream_adapter.h",
], ],
"proxy\.h": [ "proxy\.h": [
"+rtc_base/event.h", "+rtc_base/event.h",
"+rtc_base/messagehandler.h", # Inherits from it. "+rtc_base/message_handler.h", # Inherits from it.
"+rtc_base/messagequeue.h", # Inherits from MessageData. "+rtc_base/message_queue.h", # Inherits from MessageData.
"+rtc_base/refcountedobject.h", "+rtc_base/ref_counted_object.h",
"+rtc_base/scoped_ref_ptr.h", "+rtc_base/scoped_ref_ptr.h",
"+rtc_base/thread.h", "+rtc_base/thread.h",
], ],
"refcountedbase\.h": [ "ref_counted_base\.h": [
"+rtc_base/constructormagic.h", "+rtc_base/constructor_magic.h",
"+rtc_base/refcount.h", "+rtc_base/ref_count.h",
"+rtc_base/refcounter.h", "+rtc_base/ref_counter.h",
], ],
"rtcerror\.h": [ "rtc_error\.h": [
"+rtc_base/logging.h", "+rtc_base/logging.h",
], ],
"rtpreceiverinterface\.h": [ "rtp_receiver_interface\.h": [
"+rtc_base/refcount.h", "+rtc_base/ref_count.h",
"+rtc_base/scoped_ref_ptr.h", "+rtc_base/scoped_ref_ptr.h",
], ],
"rtpsenderinterface\.h": [ "rtp_sender_interface\.h": [
"+rtc_base/refcount.h", "+rtc_base/ref_count.h",
"+rtc_base/scoped_ref_ptr.h", "+rtc_base/scoped_ref_ptr.h",
], ],
"rtptransceiverinterface\.h": [ "rtp_transceiver_interface\.h": [
"+rtc_base/refcount.h", "+rtc_base/ref_count.h",
"+rtc_base/scoped_ref_ptr.h", "+rtc_base/scoped_ref_ptr.h",
], ],
"setremotedescriptionobserverinterface\.h": [ "set_remote_description_observer_interface\.h": [
"+rtc_base/refcount.h", "+rtc_base/ref_count.h",
], ],
"statstypes\.h": [ "stats_types\.h": [
"+rtc_base/constructormagic.h", "+rtc_base/constructor_magic.h",
"+rtc_base/refcount.h", "+rtc_base/ref_count.h",
"+rtc_base/scoped_ref_ptr.h", "+rtc_base/scoped_ref_ptr.h",
"+rtc_base/stringencode.h", "+rtc_base/string_encode.h",
"+rtc_base/thread_checker.h", "+rtc_base/thread_checker.h",
], ],
"umametrics\.h": [ "uma_metrics\.h": [
"+rtc_base/refcount.h", "+rtc_base/ref_count.h",
], ],
"audio_frame\.h": [ "audio_frame\.h": [
"+rtc_base/constructormagic.h", "+rtc_base/constructor_magic.h",
], ],
"audio_mixer\.h": [ "audio_mixer\.h": [
"+rtc_base/refcount.h", "+rtc_base/ref_count.h",
], ],
"audio_decoder\.h": [ "audio_decoder\.h": [
"+rtc_base/buffer.h", "+rtc_base/buffer.h",
"+rtc_base/constructormagic.h", "+rtc_base/constructor_magic.h",
], ],
"audio_decoder_factory\.h": [ "audio_decoder_factory\.h": [
"+rtc_base/refcount.h", "+rtc_base/ref_count.h",
], ],
"audio_decoder_factory_template\.h": [ "audio_decoder_factory_template\.h": [
"+rtc_base/refcountedobject.h", "+rtc_base/ref_counted_object.h",
"+rtc_base/scoped_ref_ptr.h", "+rtc_base/scoped_ref_ptr.h",
], ],
@ -210,11 +210,11 @@ specific_include_rules = {
], ],
"audio_encoder_factory\.h": [ "audio_encoder_factory\.h": [
"+rtc_base/refcount.h", "+rtc_base/ref_count.h",
], ],
"audio_encoder_factory_template\.h": [ "audio_encoder_factory_template\.h": [
"+rtc_base/refcountedobject.h", "+rtc_base/ref_counted_object.h",
"+rtc_base/scoped_ref_ptr.h", "+rtc_base/scoped_ref_ptr.h",
], ],
@ -226,22 +226,22 @@ specific_include_rules = {
"+rtc_base/scoped_ref_ptr.h", "+rtc_base/scoped_ref_ptr.h",
], ],
"framedecryptorinterface\.h": [ "frame_decryptor_interface\.h": [
"+rtc_base/refcount.h", "+rtc_base/ref_count.h",
], ],
"frameencryptorinterface\.h": [ "frame_encryptor_interface\.h": [
"+rtc_base/refcount.h", "+rtc_base/ref_count.h",
], ],
"rtcstatscollectorcallback\.h": [ "rtc_stats_collector_callback\.h": [
"+rtc_base/refcount.h", "+rtc_base/ref_count.h",
"+rtc_base/scoped_ref_ptr.h", "+rtc_base/scoped_ref_ptr.h",
], ],
"rtcstatsreport\.h": [ "rtc_stats_report\.h": [
"+rtc_base/refcount.h", "+rtc_base/ref_count.h",
"+rtc_base/refcountedobject.h", "+rtc_base/ref_counted_object.h",
"+rtc_base/scoped_ref_ptr.h", "+rtc_base/scoped_ref_ptr.h",
], ],
@ -250,11 +250,11 @@ specific_include_rules = {
], ],
"fake_frame_decryptor\.h": [ "fake_frame_decryptor\.h": [
"+rtc_base/refcountedobject.h", "+rtc_base/ref_counted_object.h",
], ],
"fake_frame_encryptor\.h": [ "fake_frame_encryptor\.h": [
"+rtc_base/refcountedobject.h", "+rtc_base/ref_counted_object.h",
], ],
"mock.*\.h": [ "mock.*\.h": [
@ -262,7 +262,7 @@ specific_include_rules = {
], ],
"simulated_network\.h": [ "simulated_network\.h": [
"+rtc_base/criticalsection.h", "+rtc_base/critical_section.h",
"+rtc_base/random.h", "+rtc_base/random.h",
"+rtc_base/thread_annotations.h", "+rtc_base/thread_annotations.h",
], ],
@ -280,7 +280,7 @@ specific_include_rules = {
], ],
"video_encoder_config\.h": [ "video_encoder_config\.h": [
"+rtc_base/refcount.h", "+rtc_base/ref_count.h",
"+rtc_base/scoped_ref_ptr.h", "+rtc_base/scoped_ref_ptr.h",
], ],

View file

@ -8,10 +8,10 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_ASYNCRESOLVERFACTORY_H_ #ifndef API_ASYNC_RESOLVER_FACTORY_H_
#define API_ASYNCRESOLVERFACTORY_H_ #define API_ASYNC_RESOLVER_FACTORY_H_
#include "rtc_base/asyncresolverinterface.h" #include "rtc_base/async_resolver_interface.h"
namespace webrtc { namespace webrtc {
@ -29,4 +29,4 @@ class AsyncResolverFactory {
} // namespace webrtc } // namespace webrtc
#endif // API_ASYNCRESOLVERFACTORY_H_ #endif // API_ASYNC_RESOLVER_FACTORY_H_

View file

@ -13,7 +13,7 @@
#include <string.h> #include <string.h>
#include "rtc_base/checks.h" #include "rtc_base/checks.h"
#include "rtc_base/timeutils.h" #include "rtc_base/time_utils.h"
namespace webrtc { namespace webrtc {

View file

@ -14,7 +14,7 @@
#include <stddef.h> #include <stddef.h>
#include <stdint.h> #include <stdint.h>
#include "rtc_base/constructormagic.h" #include "rtc_base/constructor_magic.h"
namespace webrtc { namespace webrtc {

View file

@ -14,7 +14,7 @@
#include <memory> #include <memory>
#include "api/audio/audio_frame.h" #include "api/audio/audio_frame.h"
#include "rtc_base/refcount.h" #include "rtc_base/ref_count.h"
namespace webrtc { namespace webrtc {

View file

@ -19,7 +19,7 @@
#include "absl/types/optional.h" #include "absl/types/optional.h"
#include "api/array_view.h" #include "api/array_view.h"
#include "rtc_base/buffer.h" #include "rtc_base/buffer.h"
#include "rtc_base/constructormagic.h" #include "rtc_base/constructor_magic.h"
namespace webrtc { namespace webrtc {

View file

@ -18,7 +18,7 @@
#include "api/audio_codecs/audio_codec_pair_id.h" #include "api/audio_codecs/audio_codec_pair_id.h"
#include "api/audio_codecs/audio_decoder.h" #include "api/audio_codecs/audio_decoder.h"
#include "api/audio_codecs/audio_format.h" #include "api/audio_codecs/audio_format.h"
#include "rtc_base/refcount.h" #include "rtc_base/ref_count.h"
namespace webrtc { namespace webrtc {

View file

@ -15,7 +15,7 @@
#include <vector> #include <vector>
#include "api/audio_codecs/audio_decoder_factory.h" #include "api/audio_codecs/audio_decoder_factory.h"
#include "rtc_base/refcountedobject.h" #include "rtc_base/ref_counted_object.h"
#include "rtc_base/scoped_ref_ptr.h" #include "rtc_base/scoped_ref_ptr.h"
namespace webrtc { namespace webrtc {

View file

@ -18,7 +18,7 @@
#include "api/audio_codecs/audio_codec_pair_id.h" #include "api/audio_codecs/audio_codec_pair_id.h"
#include "api/audio_codecs/audio_encoder.h" #include "api/audio_codecs/audio_encoder.h"
#include "api/audio_codecs/audio_format.h" #include "api/audio_codecs/audio_format.h"
#include "rtc_base/refcount.h" #include "rtc_base/ref_count.h"
namespace webrtc { namespace webrtc {

View file

@ -15,7 +15,7 @@
#include <vector> #include <vector>
#include "api/audio_codecs/audio_encoder_factory.h" #include "api/audio_codecs/audio_encoder_factory.h"
#include "rtc_base/refcountedobject.h" #include "rtc_base/ref_counted_object.h"
#include "rtc_base/scoped_ref_ptr.h" #include "rtc_base/scoped_ref_ptr.h"
namespace webrtc { namespace webrtc {

View file

@ -8,8 +8,8 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_CALL_CALLFACTORYINTERFACE_H_ #ifndef API_CALL_CALL_FACTORY_INTERFACE_H_
#define API_CALL_CALLFACTORYINTERFACE_H_ #define API_CALL_CALL_FACTORY_INTERFACE_H_
#include <memory> #include <memory>
@ -33,4 +33,4 @@ std::unique_ptr<CallFactoryInterface> CreateCallFactory();
} // namespace webrtc } // namespace webrtc
#endif // API_CALL_CALLFACTORYINTERFACE_H_ #endif // API_CALL_CALL_FACTORY_INTERFACE_H_

View file

@ -11,7 +11,7 @@
#include "api/candidate.h" #include "api/candidate.h"
#include "rtc_base/helpers.h" #include "rtc_base/helpers.h"
#include "rtc_base/ipaddress.h" #include "rtc_base/ip_address.h"
#include "rtc_base/strings/string_builder.h" #include "rtc_base/strings/string_builder.h"
namespace cricket { namespace cricket {

View file

@ -19,7 +19,7 @@
#include "rtc_base/checks.h" #include "rtc_base/checks.h"
#include "rtc_base/network_constants.h" #include "rtc_base/network_constants.h"
#include "rtc_base/socketaddress.h" #include "rtc_base/socket_address.h"
#include "rtc_base/system/rtc_export.h" #include "rtc_base/system/rtc_export.h"
namespace cricket { namespace cricket {

View file

@ -16,16 +16,16 @@
#include "api/audio/audio_mixer.h" #include "api/audio/audio_mixer.h"
#include "api/audio_codecs/audio_decoder_factory.h" #include "api/audio_codecs/audio_decoder_factory.h"
#include "api/audio_codecs/audio_encoder_factory.h" #include "api/audio_codecs/audio_encoder_factory.h"
#include "api/call/callfactoryinterface.h" #include "api/call/call_factory_interface.h"
#include "api/fec_controller.h" #include "api/fec_controller.h"
#include "api/peerconnectioninterface.h" #include "api/peer_connection_interface.h"
#include "api/transport/network_control.h" #include "api/transport/network_control.h"
#include "api/video_codecs/video_decoder_factory.h" #include "api/video_codecs/video_decoder_factory.h"
#include "api/video_codecs/video_encoder_factory.h" #include "api/video_codecs/video_encoder_factory.h"
#include "logging/rtc_event_log/rtc_event_log_factory.h" #include "logging/rtc_event_log/rtc_event_log_factory.h"
#include "logging/rtc_event_log/rtc_event_log_factory_interface.h" #include "logging/rtc_event_log/rtc_event_log_factory_interface.h"
#include "media/base/mediaengine.h" #include "media/base/media_engine.h"
#include "media/engine/webrtcmediaengine.h" #include "media/engine/webrtc_media_engine.h"
#include "modules/audio_device/include/audio_device.h" #include "modules/audio_device/include/audio_device.h"
#include "modules/audio_processing/include/audio_processing.h" #include "modules/audio_processing/include/audio_processing.h"
#include "rtc_base/scoped_ref_ptr.h" #include "rtc_base/scoped_ref_ptr.h"

View file

@ -17,7 +17,7 @@
#include "api/audio_codecs/audio_decoder_factory.h" #include "api/audio_codecs/audio_decoder_factory.h"
#include "api/audio_codecs/audio_encoder_factory.h" #include "api/audio_codecs/audio_encoder_factory.h"
#include "api/fec_controller.h" #include "api/fec_controller.h"
#include "api/peerconnectioninterface.h" #include "api/peer_connection_interface.h"
#include "api/transport/network_control.h" #include "api/transport/network_control.h"
#include "rtc_base/deprecation.h" #include "rtc_base/deprecation.h"
#include "rtc_base/scoped_ref_ptr.h" #include "rtc_base/scoped_ref_ptr.h"

View file

@ -8,8 +8,8 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#include "api/crypto/cryptooptions.h" #include "api/crypto/crypto_options.h"
#include "rtc_base/sslstreamadapter.h" #include "rtc_base/ssl_stream_adapter.h"
namespace webrtc { namespace webrtc {

View file

@ -8,8 +8,8 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_CRYPTO_CRYPTOOPTIONS_H_ #ifndef API_CRYPTO_CRYPTO_OPTIONS_H_
#define API_CRYPTO_CRYPTOOPTIONS_H_ #define API_CRYPTO_CRYPTO_OPTIONS_H_
#include <vector> #include <vector>
@ -63,4 +63,4 @@ struct CryptoOptions {
} // namespace webrtc } // namespace webrtc
#endif // API_CRYPTO_CRYPTOOPTIONS_H_ #endif // API_CRYPTO_CRYPTO_OPTIONS_H_

View file

@ -8,14 +8,14 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_CRYPTO_FRAMEDECRYPTORINTERFACE_H_ #ifndef API_CRYPTO_FRAME_DECRYPTOR_INTERFACE_H_
#define API_CRYPTO_FRAMEDECRYPTORINTERFACE_H_ #define API_CRYPTO_FRAME_DECRYPTOR_INTERFACE_H_
#include <vector> #include <vector>
#include "api/array_view.h" #include "api/array_view.h"
#include "api/mediatypes.h" #include "api/media_types.h"
#include "rtc_base/refcount.h" #include "rtc_base/ref_count.h"
namespace webrtc { namespace webrtc {
@ -56,4 +56,4 @@ class FrameDecryptorInterface : public rtc::RefCountInterface {
} // namespace webrtc } // namespace webrtc
#endif // API_CRYPTO_FRAMEDECRYPTORINTERFACE_H_ #endif // API_CRYPTO_FRAME_DECRYPTOR_INTERFACE_H_

View file

@ -8,12 +8,12 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_CRYPTO_FRAMEENCRYPTORINTERFACE_H_ #ifndef API_CRYPTO_FRAME_ENCRYPTOR_INTERFACE_H_
#define API_CRYPTO_FRAMEENCRYPTORINTERFACE_H_ #define API_CRYPTO_FRAME_ENCRYPTOR_INTERFACE_H_
#include "api/array_view.h" #include "api/array_view.h"
#include "api/mediatypes.h" #include "api/media_types.h"
#include "rtc_base/refcount.h" #include "rtc_base/ref_count.h"
namespace webrtc { namespace webrtc {
@ -52,4 +52,4 @@ class FrameEncryptorInterface : public rtc::RefCountInterface {
} // namespace webrtc } // namespace webrtc
#endif // API_CRYPTO_FRAMEENCRYPTORINTERFACE_H_ #endif // API_CRYPTO_FRAME_ENCRYPTOR_INTERFACE_H_

View file

@ -8,8 +8,8 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_CRYPTOPARAMS_H_ #ifndef API_CRYPTO_PARAMS_H_
#define API_CRYPTOPARAMS_H_ #define API_CRYPTO_PARAMS_H_
#include <string> #include <string>
@ -38,4 +38,4 @@ struct CryptoParams {
} // namespace cricket } // namespace cricket
#endif // API_CRYPTOPARAMS_H_ #endif // API_CRYPTO_PARAMS_H_

View file

@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#include "api/datachannelinterface.h" #include "api/data_channel_interface.h"
namespace webrtc { namespace webrtc {

View file

@ -11,16 +11,16 @@
// This file contains interfaces for DataChannels // This file contains interfaces for DataChannels
// http://dev.w3.org/2011/webrtc/editor/webrtc.html#rtcdatachannel // http://dev.w3.org/2011/webrtc/editor/webrtc.html#rtcdatachannel
#ifndef API_DATACHANNELINTERFACE_H_ #ifndef API_DATA_CHANNEL_INTERFACE_H_
#define API_DATACHANNELINTERFACE_H_ #define API_DATA_CHANNEL_INTERFACE_H_
#include <stddef.h> #include <stddef.h>
#include <stdint.h> #include <stdint.h>
#include <string> #include <string>
#include "rtc_base/checks.h" #include "rtc_base/checks.h"
#include "rtc_base/copyonwritebuffer.h" #include "rtc_base/copy_on_write_buffer.h"
#include "rtc_base/refcount.h" #include "rtc_base/ref_count.h"
namespace webrtc { namespace webrtc {
@ -177,4 +177,4 @@ class DataChannelInterface : public rtc::RefCountInterface {
} // namespace webrtc } // namespace webrtc
#endif // API_DATACHANNELINTERFACE_H_ #endif // API_DATA_CHANNEL_INTERFACE_H_

View file

@ -8,11 +8,11 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_DTLSTRANSPORTINTERFACE_H_ #ifndef API_DTLS_TRANSPORT_INTERFACE_H_
#define API_DTLSTRANSPORTINTERFACE_H_ #define API_DTLS_TRANSPORT_INTERFACE_H_
#include "api/rtcerror.h" #include "api/rtc_error.h"
#include "rtc_base/refcount.h" #include "rtc_base/ref_count.h"
namespace webrtc { namespace webrtc {
@ -66,4 +66,4 @@ class DtlsTransportInterface : public rtc::RefCountInterface {
} // namespace webrtc } // namespace webrtc
#endif // API_DTLSTRANSPORTINTERFACE_H_ #endif // API_DTLS_TRANSPORT_INTERFACE_H_

View file

@ -8,13 +8,13 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_DTMFSENDERINTERFACE_H_ #ifndef API_DTMF_SENDER_INTERFACE_H_
#define API_DTMFSENDERINTERFACE_H_ #define API_DTMF_SENDER_INTERFACE_H_
#include <string> #include <string>
#include "api/mediastreaminterface.h" #include "api/media_stream_interface.h"
#include "rtc_base/refcount.h" #include "rtc_base/ref_count.h"
namespace webrtc { namespace webrtc {
@ -97,4 +97,4 @@ class DtmfSenderInterface : public rtc::RefCountInterface {
} // namespace webrtc } // namespace webrtc
#endif // API_DTMFSENDERINTERFACE_H_ #endif // API_DTMF_SENDER_INTERFACE_H_

View file

@ -27,8 +27,8 @@
#include <vector> #include <vector>
#include "absl/types/optional.h" #include "absl/types/optional.h"
#include "api/rtcerror.h" #include "api/rtc_error.h"
#include "rtc_base/refcount.h" #include "rtc_base/ref_count.h"
#include "rtc_base/system/rtc_export.h" #include "rtc_base/system/rtc_export.h"
namespace cricket { namespace cricket {

View file

@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#include "api/jsepicecandidate.h" #include "api/jsep_ice_candidate.h"
#include <algorithm> #include <algorithm>
#include <utility> #include <utility>

View file

@ -11,8 +11,8 @@
// TODO(deadbeef): Move this out of api/; it's an implementation detail and // TODO(deadbeef): Move this out of api/; it's an implementation detail and
// shouldn't be used externally. // shouldn't be used externally.
#ifndef API_JSEPICECANDIDATE_H_ #ifndef API_JSEP_ICE_CANDIDATE_H_
#define API_JSEPICECANDIDATE_H_ #define API_JSEP_ICE_CANDIDATE_H_
#include <stddef.h> #include <stddef.h>
#include <string> #include <string>
@ -20,7 +20,7 @@
#include "api/candidate.h" #include "api/candidate.h"
#include "api/jsep.h" #include "api/jsep.h"
#include "rtc_base/constructormagic.h" #include "rtc_base/constructor_magic.h"
namespace webrtc { namespace webrtc {
@ -82,4 +82,4 @@ class JsepCandidateCollection : public IceCandidateCollection {
} // namespace webrtc } // namespace webrtc
#endif // API_JSEPICECANDIDATE_H_ #endif // API_JSEP_ICE_CANDIDATE_H_

View file

@ -11,8 +11,8 @@
// TODO(deadbeef): Move this out of api/; it's an implementation detail and // TODO(deadbeef): Move this out of api/; it's an implementation detail and
// shouldn't be used externally. // shouldn't be used externally.
#ifndef API_JSEPSESSIONDESCRIPTION_H_ #ifndef API_JSEP_SESSION_DESCRIPTION_H_
#define API_JSEPSESSIONDESCRIPTION_H_ #define API_JSEP_SESSION_DESCRIPTION_H_
#include <memory> #include <memory>
#include <string> #include <string>
@ -21,8 +21,8 @@
#include "absl/strings/string_view.h" #include "absl/strings/string_view.h"
#include "api/candidate.h" #include "api/candidate.h"
#include "api/jsep.h" #include "api/jsep.h"
#include "api/jsepicecandidate.h" #include "api/jsep_ice_candidate.h"
#include "rtc_base/constructormagic.h" #include "rtc_base/constructor_magic.h"
namespace cricket { namespace cricket {
class SessionDescription; class SessionDescription;
@ -88,4 +88,4 @@ class JsepSessionDescription : public SessionDescriptionInterface {
} // namespace webrtc } // namespace webrtc
#endif // API_JSEPSESSIONDESCRIPTION_H_ #endif // API_JSEP_SESSION_DESCRIPTION_H_

View file

@ -8,12 +8,12 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#include "api/mediaconstraintsinterface.h" #include "api/media_constraints_interface.h"
#include "absl/types/optional.h" #include "absl/types/optional.h"
#include "api/peerconnectioninterface.h" #include "api/peer_connection_interface.h"
#include "media/base/mediaconfig.h" #include "media/base/media_config.h"
#include "rtc_base/stringencode.h" #include "rtc_base/string_encode.h"
namespace { namespace {

View file

@ -18,15 +18,15 @@
// be removed from WebRTC. // be removed from WebRTC.
// https://bugs.chromium.org/p/webrtc/issues/detail?id=9239 // https://bugs.chromium.org/p/webrtc/issues/detail?id=9239
#ifndef API_MEDIACONSTRAINTSINTERFACE_H_ #ifndef API_MEDIA_CONSTRAINTS_INTERFACE_H_
#define API_MEDIACONSTRAINTSINTERFACE_H_ #define API_MEDIA_CONSTRAINTS_INTERFACE_H_
#include <stddef.h> #include <stddef.h>
#include <string> #include <string>
#include <vector> #include <vector>
#include "api/audio_options.h" #include "api/audio_options.h"
#include "api/peerconnectioninterface.h" #include "api/peer_connection_interface.h"
namespace webrtc { namespace webrtc {
@ -156,4 +156,4 @@ bool CopyConstraintsIntoOfferAnswerOptions(
} // namespace webrtc } // namespace webrtc
#endif // API_MEDIACONSTRAINTSINTERFACE_H_ #endif // API_MEDIA_CONSTRAINTS_INTERFACE_H_

View file

@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#include "api/mediastreaminterface.h" #include "api/media_stream_interface.h"
namespace webrtc { namespace webrtc {

View file

@ -14,8 +14,8 @@
// interfaces must be used only with PeerConnection. PeerConnectionManager // interfaces must be used only with PeerConnection. PeerConnectionManager
// interface provides the factory methods to create MediaStream and MediaTracks. // interface provides the factory methods to create MediaStream and MediaTracks.
#ifndef API_MEDIASTREAMINTERFACE_H_ #ifndef API_MEDIA_STREAM_INTERFACE_H_
#define API_MEDIASTREAMINTERFACE_H_ #define API_MEDIA_STREAM_INTERFACE_H_
#include <stddef.h> #include <stddef.h>
@ -28,7 +28,7 @@
#include "api/video/video_sink_interface.h" #include "api/video/video_sink_interface.h"
#include "api/video/video_source_interface.h" #include "api/video/video_source_interface.h"
#include "modules/audio_processing/include/audio_processing_statistics.h" #include "modules/audio_processing/include/audio_processing_statistics.h"
#include "rtc_base/refcount.h" #include "rtc_base/ref_count.h"
#include "rtc_base/scoped_ref_ptr.h" #include "rtc_base/scoped_ref_ptr.h"
namespace webrtc { namespace webrtc {
@ -294,4 +294,4 @@ class MediaStreamInterface : public rtc::RefCountInterface,
} // namespace webrtc } // namespace webrtc
#endif // API_MEDIASTREAMINTERFACE_H_ #endif // API_MEDIA_STREAM_INTERFACE_H_

View file

@ -8,12 +8,12 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_MEDIASTREAMPROXY_H_ #ifndef API_MEDIA_STREAM_PROXY_H_
#define API_MEDIASTREAMPROXY_H_ #define API_MEDIA_STREAM_PROXY_H_
#include <string> #include <string>
#include "api/mediastreaminterface.h" #include "api/media_stream_interface.h"
#include "api/proxy.h" #include "api/proxy.h"
namespace webrtc { namespace webrtc {
@ -41,4 +41,4 @@ END_PROXY_MAP()
} // namespace webrtc } // namespace webrtc
#endif // API_MEDIASTREAMPROXY_H_ #endif // API_MEDIA_STREAM_PROXY_H_

View file

@ -11,12 +11,12 @@
// This file includes proxy classes for tracks. The purpose is // This file includes proxy classes for tracks. The purpose is
// to make sure tracks are only accessed from the signaling thread. // to make sure tracks are only accessed from the signaling thread.
#ifndef API_MEDIASTREAMTRACKPROXY_H_ #ifndef API_MEDIA_STREAM_TRACK_PROXY_H_
#define API_MEDIASTREAMTRACKPROXY_H_ #define API_MEDIA_STREAM_TRACK_PROXY_H_
#include <string> #include <string>
#include "api/mediastreaminterface.h" #include "api/media_stream_interface.h"
#include "api/proxy.h" #include "api/proxy.h"
namespace webrtc { namespace webrtc {
@ -62,4 +62,4 @@ END_PROXY_MAP()
} // namespace webrtc } // namespace webrtc
#endif // API_MEDIASTREAMTRACKPROXY_H_ #endif // API_MEDIA_STREAM_TRACK_PROXY_H_

View file

@ -25,11 +25,11 @@
#include "absl/types/optional.h" #include "absl/types/optional.h"
#include "api/array_view.h" #include "api/array_view.h"
#include "api/rtcerror.h" #include "api/rtc_error.h"
#include "api/video/encoded_image.h" #include "api/video/encoded_image.h"
#include "rtc_base/copyonwritebuffer.h" #include "rtc_base/copy_on_write_buffer.h"
#include "rtc_base/deprecation.h" #include "rtc_base/deprecation.h"
#include "rtc_base/networkroute.h" #include "rtc_base/network_route.h"
namespace rtc { namespace rtc {
class PacketTransportInternal; class PacketTransportInternal;

View file

@ -8,9 +8,9 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#include "api/mediatypes.h" #include "api/media_types.h"
#include "api/mediastreaminterface.h" #include "api/media_stream_interface.h"
#include "rtc_base/checks.h" #include "rtc_base/checks.h"
namespace { namespace {

View file

@ -8,8 +8,8 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_MEDIATYPES_H_ #ifndef API_MEDIA_TYPES_H_
#define API_MEDIATYPES_H_ #define API_MEDIA_TYPES_H_
#include <string> #include <string>
@ -33,4 +33,4 @@ enum class MediaType { ANY, AUDIO, VIDEO, DATA };
} // namespace webrtc } // namespace webrtc
#endif // API_MEDIATYPES_H_ #endif // API_MEDIA_TYPES_H_

View file

@ -13,7 +13,7 @@
#include <list> #include <list>
#include "api/mediastreaminterface.h" #include "api/media_stream_interface.h"
#include "rtc_base/checks.h" #include "rtc_base/checks.h"
namespace webrtc { namespace webrtc {

View file

@ -8,8 +8,8 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_ORTC_PACKETTRANSPORTINTERFACE_H_ #ifndef API_ORTC_PACKET_TRANSPORT_INTERFACE_H_
#define API_ORTC_PACKETTRANSPORTINTERFACE_H_ #define API_ORTC_PACKET_TRANSPORT_INTERFACE_H_
namespace rtc { namespace rtc {
@ -36,4 +36,4 @@ class PacketTransportInterface {
} // namespace webrtc } // namespace webrtc
#endif // API_ORTC_PACKETTRANSPORTINTERFACE_H_ #endif // API_ORTC_PACKET_TRANSPORT_INTERFACE_H_

View file

@ -8,16 +8,16 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_ORTC_RTPTRANSPORTINTERFACE_H_ #ifndef API_ORTC_RTP_TRANSPORT_INTERFACE_H_
#define API_ORTC_RTPTRANSPORTINTERFACE_H_ #define API_ORTC_RTP_TRANSPORT_INTERFACE_H_
#include <string> #include <string>
#include "absl/types/optional.h" #include "absl/types/optional.h"
#include "api/ortc/packettransportinterface.h" #include "api/ortc/packet_transport_interface.h"
#include "api/rtcerror.h" #include "api/rtc_error.h"
#include "api/rtp_headers.h" #include "api/rtp_headers.h"
#include "api/rtpparameters.h" #include "api/rtp_parameters.h"
namespace webrtc { namespace webrtc {
@ -91,4 +91,4 @@ class RtpTransportInterface {
} // namespace webrtc } // namespace webrtc
#endif // API_ORTC_RTPTRANSPORTINTERFACE_H_ #endif // API_ORTC_RTP_TRANSPORT_INTERFACE_H_

View file

@ -8,12 +8,12 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_ORTC_SRTPTRANSPORTINTERFACE_H_ #ifndef API_ORTC_SRTP_TRANSPORT_INTERFACE_H_
#define API_ORTC_SRTPTRANSPORTINTERFACE_H_ #define API_ORTC_SRTP_TRANSPORT_INTERFACE_H_
#include "api/cryptoparams.h" #include "api/crypto_params.h"
#include "api/ortc/rtptransportinterface.h" #include "api/ortc/rtp_transport_interface.h"
#include "api/rtcerror.h" #include "api/rtc_error.h"
namespace webrtc { namespace webrtc {
@ -45,4 +45,4 @@ class SrtpTransportInterface : public RtpTransportInterface {
} // namespace webrtc } // namespace webrtc
#endif // API_ORTC_SRTPTRANSPORTINTERFACE_H_ #endif // API_ORTC_SRTP_TRANSPORT_INTERFACE_H_

View file

@ -8,14 +8,14 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_PEERCONNECTIONFACTORYPROXY_H_ #ifndef API_PEER_CONNECTION_FACTORY_PROXY_H_
#define API_PEERCONNECTIONFACTORYPROXY_H_ #define API_PEER_CONNECTION_FACTORY_PROXY_H_
#include <memory> #include <memory>
#include <string> #include <string>
#include <utility> #include <utility>
#include "api/peerconnectioninterface.h" #include "api/peer_connection_interface.h"
#include "api/proxy.h" #include "api/proxy.h"
#include "rtc_base/bind.h" #include "rtc_base/bind.h"
@ -74,4 +74,4 @@ END_PROXY_MAP()
} // namespace webrtc } // namespace webrtc
#endif // API_PEERCONNECTIONFACTORYPROXY_H_ #endif // API_PEER_CONNECTION_FACTORY_PROXY_H_

View file

@ -8,8 +8,8 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#include "api/peerconnectioninterface.h" #include "api/peer_connection_interface.h"
#include "api/dtlstransportinterface.h" #include "api/dtls_transport_interface.h"
namespace webrtc { namespace webrtc {

View file

@ -64,55 +64,55 @@
// 7. Once a candidate has been gathered, the PeerConnection will call the // 7. Once a candidate has been gathered, the PeerConnection will call the
// observer function OnIceCandidate. Send these candidates to the remote peer. // observer function OnIceCandidate. Send these candidates to the remote peer.
#ifndef API_PEERCONNECTIONINTERFACE_H_ #ifndef API_PEER_CONNECTION_INTERFACE_H_
#define API_PEERCONNECTIONINTERFACE_H_ #define API_PEER_CONNECTION_INTERFACE_H_
#include <memory> #include <memory>
#include <string> #include <string>
#include <vector> #include <vector>
#include "api/asyncresolverfactory.h" #include "api/async_resolver_factory.h"
#include "api/audio/audio_mixer.h" #include "api/audio/audio_mixer.h"
#include "api/audio_codecs/audio_decoder_factory.h" #include "api/audio_codecs/audio_decoder_factory.h"
#include "api/audio_codecs/audio_encoder_factory.h" #include "api/audio_codecs/audio_encoder_factory.h"
#include "api/audio_options.h" #include "api/audio_options.h"
#include "api/call/callfactoryinterface.h" #include "api/call/call_factory_interface.h"
#include "api/crypto/cryptooptions.h" #include "api/crypto/crypto_options.h"
#include "api/datachannelinterface.h" #include "api/data_channel_interface.h"
#include "api/fec_controller.h" #include "api/fec_controller.h"
#include "api/jsep.h" #include "api/jsep.h"
#include "api/media_stream_interface.h"
#include "api/media_transport_interface.h" #include "api/media_transport_interface.h"
#include "api/mediastreaminterface.h" #include "api/rtc_error.h"
#include "api/rtcerror.h" #include "api/rtc_event_log_output.h"
#include "api/rtceventlogoutput.h" #include "api/rtp_receiver_interface.h"
#include "api/rtpreceiverinterface.h" #include "api/rtp_sender_interface.h"
#include "api/rtpsenderinterface.h" #include "api/rtp_transceiver_interface.h"
#include "api/rtptransceiverinterface.h" #include "api/set_remote_description_observer_interface.h"
#include "api/setremotedescriptionobserverinterface.h" #include "api/stats/rtc_stats_collector_callback.h"
#include "api/stats/rtcstatscollectorcallback.h" #include "api/stats_types.h"
#include "api/statstypes.h"
#include "api/transport/bitrate_settings.h" #include "api/transport/bitrate_settings.h"
#include "api/transport/network_control.h" #include "api/transport/network_control.h"
#include "api/turncustomizer.h" #include "api/turn_customizer.h"
#include "logging/rtc_event_log/rtc_event_log_factory_interface.h" #include "logging/rtc_event_log/rtc_event_log_factory_interface.h"
#include "media/base/mediaconfig.h" #include "media/base/media_config.h"
// TODO(bugs.webrtc.org/6353): cricket::VideoCapturer is deprecated and should // TODO(bugs.webrtc.org/6353): cricket::VideoCapturer is deprecated and should
// be deleted from the PeerConnection api. // be deleted from the PeerConnection api.
#include "media/base/videocapturer.h" // nogncheck #include "media/base/video_capturer.h" // nogncheck
// TODO(bugs.webrtc.org/7447): We plan to provide a way to let applications // TODO(bugs.webrtc.org/7447): We plan to provide a way to let applications
// inject a PacketSocketFactory and/or NetworkManager, and not expose // inject a PacketSocketFactory and/or NetworkManager, and not expose
// PortAllocator in the PeerConnection api. // PortAllocator in the PeerConnection api.
#include "media/base/mediaengine.h" // nogncheck #include "media/base/media_engine.h" // nogncheck
#include "p2p/base/portallocator.h" // nogncheck #include "p2p/base/port_allocator.h" // nogncheck
// TODO(nisse): The interface for bitrate allocation strategy belongs in api/. // TODO(nisse): The interface for bitrate allocation strategy belongs in api/.
#include "rtc_base/bitrateallocationstrategy.h" #include "rtc_base/bitrate_allocation_strategy.h"
#include "rtc_base/network.h" #include "rtc_base/network.h"
#include "rtc_base/platform_file.h" #include "rtc_base/platform_file.h"
#include "rtc_base/rtccertificate.h" #include "rtc_base/rtc_certificate.h"
#include "rtc_base/rtccertificategenerator.h" #include "rtc_base/rtc_certificate_generator.h"
#include "rtc_base/socketaddress.h" #include "rtc_base/socket_address.h"
#include "rtc_base/sslcertificate.h" #include "rtc_base/ssl_certificate.h"
#include "rtc_base/sslstreamadapter.h" #include "rtc_base/ssl_stream_adapter.h"
#include "rtc_base/system/rtc_export.h" #include "rtc_base/system/rtc_export.h"
namespace rtc { namespace rtc {
@ -1462,4 +1462,4 @@ CreateModularPeerConnectionFactory(
} // namespace webrtc } // namespace webrtc
#endif // API_PEERCONNECTIONINTERFACE_H_ #endif // API_PEER_CONNECTION_INTERFACE_H_

View file

@ -8,14 +8,14 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_PEERCONNECTIONPROXY_H_ #ifndef API_PEER_CONNECTION_PROXY_H_
#define API_PEERCONNECTIONPROXY_H_ #define API_PEER_CONNECTION_PROXY_H_
#include <memory> #include <memory>
#include <string> #include <string>
#include <vector> #include <vector>
#include "api/peerconnectioninterface.h" #include "api/peer_connection_interface.h"
#include "api/proxy.h" #include "api/proxy.h"
namespace webrtc { namespace webrtc {
@ -141,4 +141,4 @@ END_PROXY_MAP()
} // namespace webrtc } // namespace webrtc
#endif // API_PEERCONNECTIONPROXY_H_ #endif // API_PEER_CONNECTION_PROXY_H_

View file

@ -57,9 +57,9 @@
#include <utility> #include <utility>
#include "rtc_base/event.h" #include "rtc_base/event.h"
#include "rtc_base/messagehandler.h" #include "rtc_base/message_handler.h"
#include "rtc_base/messagequeue.h" #include "rtc_base/message_queue.h"
#include "rtc_base/refcountedobject.h" #include "rtc_base/ref_counted_object.h"
#include "rtc_base/scoped_ref_ptr.h" #include "rtc_base/scoped_ref_ptr.h"
#include "rtc_base/thread.h" #include "rtc_base/thread.h"

View file

@ -7,12 +7,12 @@
* in the file PATENTS. All contributing project authors may * in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_REFCOUNTEDBASE_H_ #ifndef API_REF_COUNTED_BASE_H_
#define API_REFCOUNTEDBASE_H_ #define API_REF_COUNTED_BASE_H_
#include "rtc_base/constructormagic.h" #include "rtc_base/constructor_magic.h"
#include "rtc_base/refcount.h" #include "rtc_base/ref_count.h"
#include "rtc_base/refcounter.h" #include "rtc_base/ref_counter.h"
namespace rtc { namespace rtc {
@ -40,4 +40,4 @@ class RefCountedBase {
} // namespace rtc } // namespace rtc
#endif // API_REFCOUNTEDBASE_H_ #endif // API_REF_COUNTED_BASE_H_

View file

@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#include "api/rtcerror.h" #include "api/rtc_error.h"
#include "rtc_base/arraysize.h" #include "rtc_base/arraysize.h"

View file

@ -8,8 +8,8 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_RTCERROR_H_ #ifndef API_RTC_ERROR_H_
#define API_RTCERROR_H_ #define API_RTC_ERROR_H_
#ifdef UNIT_TEST #ifdef UNIT_TEST
#include <ostream> #include <ostream>
@ -291,4 +291,4 @@ class RTCErrorOr {
} // namespace webrtc } // namespace webrtc
#endif // API_RTCERROR_H_ #endif // API_RTC_ERROR_H_

View file

@ -10,7 +10,7 @@
#include <utility> #include <utility>
#include "api/rtcerror.h" #include "api/rtc_error.h"
#include "test/gtest.h" #include "test/gtest.h"
namespace { namespace {

View file

@ -8,8 +8,8 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_RTCEVENTLOGOUTPUT_H_ #ifndef API_RTC_EVENT_LOG_OUTPUT_H_
#define API_RTCEVENTLOGOUTPUT_H_ #define API_RTC_EVENT_LOG_OUTPUT_H_
#include <string> #include <string>
@ -36,4 +36,4 @@ class RtcEventLogOutput {
} // namespace webrtc } // namespace webrtc
#endif // API_RTCEVENTLOGOUTPUT_H_ #endif // API_RTC_EVENT_LOG_OUTPUT_H_

View file

@ -7,7 +7,7 @@
* in the file PATENTS. All contributing project authors may * in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#include "api/rtpparameters.h" #include "api/rtp_parameters.h"
#include <algorithm> #include <algorithm>
#include <string> #include <string>

View file

@ -8,8 +8,8 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_RTPPARAMETERS_H_ #ifndef API_RTP_PARAMETERS_H_
#define API_RTPPARAMETERS_H_ #define API_RTP_PARAMETERS_H_
#include <stdint.h> #include <stdint.h>
#include <string> #include <string>
@ -17,7 +17,7 @@
#include <vector> #include <vector>
#include "absl/types/optional.h" #include "absl/types/optional.h"
#include "api/mediatypes.h" #include "api/media_types.h"
#include "rtc_base/system/rtc_export.h" #include "rtc_base/system/rtc_export.h"
namespace webrtc { namespace webrtc {
@ -673,4 +673,4 @@ struct RTC_EXPORT RtpParameters {
} // namespace webrtc } // namespace webrtc
#endif // API_RTPPARAMETERS_H_ #endif // API_RTP_PARAMETERS_H_

View file

@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#include "api/rtpparameters.h" #include "api/rtp_parameters.h"
#include "test/gtest.h" #include "test/gtest.h"
namespace webrtc { namespace webrtc {

View file

@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#include "api/rtpreceiverinterface.h" #include "api/rtp_receiver_interface.h"
namespace webrtc { namespace webrtc {

View file

@ -11,18 +11,18 @@
// This file contains interfaces for RtpReceivers // This file contains interfaces for RtpReceivers
// http://w3c.github.io/webrtc-pc/#rtcrtpreceiver-interface // http://w3c.github.io/webrtc-pc/#rtcrtpreceiver-interface
#ifndef API_RTPRECEIVERINTERFACE_H_ #ifndef API_RTP_RECEIVER_INTERFACE_H_
#define API_RTPRECEIVERINTERFACE_H_ #define API_RTP_RECEIVER_INTERFACE_H_
#include <string> #include <string>
#include <vector> #include <vector>
#include "api/crypto/framedecryptorinterface.h" #include "api/crypto/frame_decryptor_interface.h"
#include "api/mediastreaminterface.h" #include "api/media_stream_interface.h"
#include "api/mediatypes.h" #include "api/media_types.h"
#include "api/proxy.h" #include "api/proxy.h"
#include "api/rtpparameters.h" #include "api/rtp_parameters.h"
#include "rtc_base/refcount.h" #include "rtc_base/ref_count.h"
#include "rtc_base/scoped_ref_ptr.h" #include "rtc_base/scoped_ref_ptr.h"
namespace webrtc { namespace webrtc {
@ -164,4 +164,4 @@ END_PROXY_MAP()
} // namespace webrtc } // namespace webrtc
#endif // API_RTPRECEIVERINTERFACE_H_ #endif // API_RTP_RECEIVER_INTERFACE_H_

View file

@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#include "api/rtpsenderinterface.h" #include "api/rtp_sender_interface.h"
namespace webrtc { namespace webrtc {

View file

@ -11,20 +11,20 @@
// This file contains interfaces for RtpSenders // This file contains interfaces for RtpSenders
// http://w3c.github.io/webrtc-pc/#rtcrtpsender-interface // http://w3c.github.io/webrtc-pc/#rtcrtpsender-interface
#ifndef API_RTPSENDERINTERFACE_H_ #ifndef API_RTP_SENDER_INTERFACE_H_
#define API_RTPSENDERINTERFACE_H_ #define API_RTP_SENDER_INTERFACE_H_
#include <string> #include <string>
#include <vector> #include <vector>
#include "api/crypto/frameencryptorinterface.h" #include "api/crypto/frame_encryptor_interface.h"
#include "api/dtmfsenderinterface.h" #include "api/dtmf_sender_interface.h"
#include "api/mediastreaminterface.h" #include "api/media_stream_interface.h"
#include "api/mediatypes.h" #include "api/media_types.h"
#include "api/proxy.h" #include "api/proxy.h"
#include "api/rtcerror.h" #include "api/rtc_error.h"
#include "api/rtpparameters.h" #include "api/rtp_parameters.h"
#include "rtc_base/refcount.h" #include "rtc_base/ref_count.h"
#include "rtc_base/scoped_ref_ptr.h" #include "rtc_base/scoped_ref_ptr.h"
namespace webrtc { namespace webrtc {
@ -108,4 +108,4 @@ END_PROXY_MAP()
} // namespace webrtc } // namespace webrtc
#endif // API_RTPSENDERINTERFACE_H_ #endif // API_RTP_SENDER_INTERFACE_H_

View file

@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#include "api/rtptransceiverinterface.h" #include "api/rtp_transceiver_interface.h"
#include "rtc_base/checks.h" #include "rtc_base/checks.h"

View file

@ -8,19 +8,19 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_RTPTRANSCEIVERINTERFACE_H_ #ifndef API_RTP_TRANSCEIVER_INTERFACE_H_
#define API_RTPTRANSCEIVERINTERFACE_H_ #define API_RTP_TRANSCEIVER_INTERFACE_H_
#include <string> #include <string>
#include <vector> #include <vector>
#include "absl/types/optional.h" #include "absl/types/optional.h"
#include "api/array_view.h" #include "api/array_view.h"
#include "api/mediatypes.h" #include "api/media_types.h"
#include "api/rtpparameters.h" #include "api/rtp_parameters.h"
#include "api/rtpreceiverinterface.h" #include "api/rtp_receiver_interface.h"
#include "api/rtpsenderinterface.h" #include "api/rtp_sender_interface.h"
#include "rtc_base/refcount.h" #include "rtc_base/ref_count.h"
#include "rtc_base/scoped_ref_ptr.h" #include "rtc_base/scoped_ref_ptr.h"
namespace webrtc { namespace webrtc {
@ -137,4 +137,4 @@ class RtpTransceiverInterface : public rtc::RefCountInterface {
} // namespace webrtc } // namespace webrtc
#endif // API_RTPTRANSCEIVERINTERFACE_H_ #endif // API_RTP_TRANSCEIVER_INTERFACE_H_

View file

@ -8,11 +8,11 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_SETREMOTEDESCRIPTIONOBSERVERINTERFACE_H_ #ifndef API_SET_REMOTE_DESCRIPTION_OBSERVER_INTERFACE_H_
#define API_SETREMOTEDESCRIPTIONOBSERVERINTERFACE_H_ #define API_SET_REMOTE_DESCRIPTION_OBSERVER_INTERFACE_H_
#include "api/rtcerror.h" #include "api/rtc_error.h"
#include "rtc_base/refcount.h" #include "rtc_base/ref_count.h"
namespace webrtc { namespace webrtc {
@ -28,4 +28,4 @@ class SetRemoteDescriptionObserverInterface : public rtc::RefCountInterface {
} // namespace webrtc } // namespace webrtc
#endif // API_SETREMOTEDESCRIPTIONOBSERVERINTERFACE_H_ #endif // API_SET_REMOTE_DESCRIPTION_OBSERVER_INTERFACE_H_

View file

@ -8,8 +8,8 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_STATS_RTCSTATS_H_ #ifndef API_STATS_RTC_STATS_H_
#define API_STATS_RTCSTATS_H_ #define API_STATS_RTC_STATS_H_
#include <stddef.h> #include <stddef.h>
#include <stdint.h> #include <stdint.h>
@ -348,4 +348,4 @@ class RTCNonStandardStatsMember : public RTCStatsMember<T> {
}; };
} // namespace webrtc } // namespace webrtc
#endif // API_STATS_RTCSTATS_H_ #endif // API_STATS_RTC_STATS_H_

View file

@ -8,11 +8,11 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_STATS_RTCSTATSCOLLECTORCALLBACK_H_ #ifndef API_STATS_RTC_STATS_COLLECTOR_CALLBACK_H_
#define API_STATS_RTCSTATSCOLLECTORCALLBACK_H_ #define API_STATS_RTC_STATS_COLLECTOR_CALLBACK_H_
#include "api/stats/rtcstatsreport.h" #include "api/stats/rtc_stats_report.h"
#include "rtc_base/refcount.h" #include "rtc_base/ref_count.h"
#include "rtc_base/scoped_ref_ptr.h" #include "rtc_base/scoped_ref_ptr.h"
namespace webrtc { namespace webrtc {
@ -27,4 +27,4 @@ class RTCStatsCollectorCallback : public virtual rtc::RefCountInterface {
} // namespace webrtc } // namespace webrtc
#endif // API_STATS_RTCSTATSCOLLECTORCALLBACK_H_ #endif // API_STATS_RTC_STATS_COLLECTOR_CALLBACK_H_

View file

@ -8,8 +8,8 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_STATS_RTCSTATSREPORT_H_ #ifndef API_STATS_RTC_STATS_REPORT_H_
#define API_STATS_RTCSTATSREPORT_H_ #define API_STATS_RTC_STATS_REPORT_H_
#include <stddef.h> #include <stddef.h>
#include <stdint.h> #include <stdint.h>
@ -18,9 +18,9 @@
#include <string> #include <string>
#include <vector> #include <vector>
#include "api/stats/rtcstats.h" #include "api/stats/rtc_stats.h"
#include "rtc_base/refcount.h" #include "rtc_base/ref_count.h"
#include "rtc_base/refcountedobject.h" #include "rtc_base/ref_counted_object.h"
#include "rtc_base/scoped_ref_ptr.h" #include "rtc_base/scoped_ref_ptr.h"
#include "rtc_base/system/rtc_export.h" #include "rtc_base/system/rtc_export.h"
@ -117,4 +117,4 @@ class RTC_EXPORT RTCStatsReport : public rtc::RefCountInterface {
} // namespace webrtc } // namespace webrtc
#endif // API_STATS_RTCSTATSREPORT_H_ #endif // API_STATS_RTC_STATS_REPORT_H_

View file

@ -16,7 +16,7 @@
#include <string> #include <string>
#include <vector> #include <vector>
#include "api/stats/rtcstats.h" #include "api/stats/rtc_stats.h"
#include "rtc_base/system/rtc_export.h" #include "rtc_base/system/rtc_export.h"
namespace webrtc { namespace webrtc {

View file

@ -8,12 +8,12 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#include "api/statstypes.h" #include "api/stats_types.h"
#include <string.h> #include <string.h>
#include "rtc_base/checks.h" #include "rtc_base/checks.h"
#include "rtc_base/refcountedobject.h" #include "rtc_base/ref_counted_object.h"
// TODO(tommi): Could we have a static map of value name -> expected type // TODO(tommi): Could we have a static map of value name -> expected type
// and use this to RTC_DCHECK on correct usage (somewhat strongly typed values)? // and use this to RTC_DCHECK on correct usage (somewhat strongly typed values)?

View file

@ -11,8 +11,8 @@
// This file contains structures used for retrieving statistics from an ongoing // This file contains structures used for retrieving statistics from an ongoing
// libjingle session. // libjingle session.
#ifndef API_STATSTYPES_H_ #ifndef API_STATS_TYPES_H_
#define API_STATSTYPES_H_ #define API_STATS_TYPES_H_
#include <algorithm> #include <algorithm>
#include <list> #include <list>
@ -20,10 +20,10 @@
#include <string> #include <string>
#include <vector> #include <vector>
#include "rtc_base/constructormagic.h" #include "rtc_base/constructor_magic.h"
#include "rtc_base/refcount.h" #include "rtc_base/ref_count.h"
#include "rtc_base/scoped_ref_ptr.h" #include "rtc_base/scoped_ref_ptr.h"
#include "rtc_base/stringencode.h" #include "rtc_base/string_encode.h"
#include "rtc_base/thread_checker.h" #include "rtc_base/thread_checker.h"
namespace webrtc { namespace webrtc {
@ -449,4 +449,4 @@ class StatsCollection {
} // namespace webrtc } // namespace webrtc
#endif // API_STATSTYPES_H_ #endif // API_STATS_TYPES_H_

View file

@ -5,12 +5,12 @@ specific_include_rules = {
".*": [ ".*": [
"+video" "+video"
], ],
"fakeconstraints\.h": [ "fake_constraints\.h": [
"+rtc_base/stringencode.h", "+rtc_base/string_encode.h",
], ],
"loopback_media_transport\.h": [ "loopback_media_transport\.h": [
"+rtc_base/asyncinvoker.h", "+rtc_base/async_invoker.h",
"+rtc_base/criticalsection.h", "+rtc_base/critical_section.h",
"+rtc_base/thread.h", "+rtc_base/thread.h",
"+rtc_base/thread_checker.h", "+rtc_base/thread_checker.h",
], ],

View file

@ -8,14 +8,14 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_TEST_FAKECONSTRAINTS_H_ #ifndef API_TEST_FAKE_CONSTRAINTS_H_
#define API_TEST_FAKECONSTRAINTS_H_ #define API_TEST_FAKE_CONSTRAINTS_H_
#include <string> #include <string>
#include <vector> #include <vector>
#include "api/mediaconstraintsinterface.h" #include "api/media_constraints_interface.h"
#include "rtc_base/stringencode.h" #include "rtc_base/string_encode.h"
namespace webrtc { namespace webrtc {
@ -109,4 +109,4 @@ class FakeConstraints : public webrtc::MediaConstraintsInterface {
} // namespace webrtc } // namespace webrtc
#endif // API_TEST_FAKECONSTRAINTS_H_ #endif // API_TEST_FAKE_CONSTRAINTS_H_

View file

@ -16,9 +16,9 @@
#include <vector> #include <vector>
#include "api/array_view.h" #include "api/array_view.h"
#include "api/crypto/framedecryptorinterface.h" #include "api/crypto/frame_decryptor_interface.h"
#include "api/mediatypes.h" #include "api/media_types.h"
#include "rtc_base/refcountedobject.h" #include "rtc_base/ref_counted_object.h"
namespace webrtc { namespace webrtc {

View file

@ -15,9 +15,9 @@
#include <stdint.h> #include <stdint.h>
#include "api/array_view.h" #include "api/array_view.h"
#include "api/crypto/frameencryptorinterface.h" #include "api/crypto/frame_encryptor_interface.h"
#include "api/mediatypes.h" #include "api/media_types.h"
#include "rtc_base/refcountedobject.h" #include "rtc_base/ref_counted_object.h"
namespace webrtc { namespace webrtc {

View file

@ -11,7 +11,7 @@
#include "api/test/loopback_media_transport.h" #include "api/test/loopback_media_transport.h"
#include "absl/memory/memory.h" #include "absl/memory/memory.h"
#include "rtc_base/timeutils.h" #include "rtc_base/time_utils.h"
namespace webrtc { namespace webrtc {

View file

@ -17,8 +17,8 @@
#include "absl/memory/memory.h" #include "absl/memory/memory.h"
#include "api/media_transport_interface.h" #include "api/media_transport_interface.h"
#include "rtc_base/asyncinvoker.h" #include "rtc_base/async_invoker.h"
#include "rtc_base/criticalsection.h" #include "rtc_base/critical_section.h"
#include "rtc_base/thread.h" #include "rtc_base/thread.h"
#include "rtc_base/thread_checker.h" #include "rtc_base/thread_checker.h"

View file

@ -13,7 +13,7 @@
#include <vector> #include <vector>
#include "api/crypto/framedecryptorinterface.h" #include "api/crypto/frame_decryptor_interface.h"
#include "test/gmock.h" #include "test/gmock.h"
namespace webrtc { namespace webrtc {

View file

@ -11,7 +11,7 @@
#ifndef API_TEST_MOCK_FRAME_ENCRYPTOR_H_ #ifndef API_TEST_MOCK_FRAME_ENCRYPTOR_H_
#define API_TEST_MOCK_FRAME_ENCRYPTOR_H_ #define API_TEST_MOCK_FRAME_ENCRYPTOR_H_
#include "api/crypto/frameencryptorinterface.h" #include "api/crypto/frame_encryptor_interface.h"
#include "test/gmock.h" #include "test/gmock.h"
namespace webrtc { namespace webrtc {

View file

@ -16,7 +16,7 @@
#include <utility> #include <utility>
#include <vector> #include <vector>
#include "api/peerconnectioninterface.h" #include "api/peer_connection_interface.h"
#include "test/gmock.h" #include "test/gmock.h"
namespace webrtc { namespace webrtc {

View file

@ -14,7 +14,7 @@
#include <string> #include <string>
#include <vector> #include <vector>
#include "api/rtpreceiverinterface.h" #include "api/rtp_receiver_interface.h"
#include "test/gmock.h" #include "test/gmock.h"
namespace webrtc { namespace webrtc {

View file

@ -14,7 +14,7 @@
#include <string> #include <string>
#include <vector> #include <vector>
#include "api/rtpsenderinterface.h" #include "api/rtp_sender_interface.h"
#include "test/gmock.h" #include "test/gmock.h"
namespace webrtc { namespace webrtc {

View file

@ -18,7 +18,7 @@
#include <vector> #include <vector>
#include "absl/types/optional.h" #include "absl/types/optional.h"
#include "rtc_base/criticalsection.h" #include "rtc_base/critical_section.h"
#include "rtc_base/random.h" #include "rtc_base/random.h"
#include "rtc_base/thread_annotations.h" #include "rtc_base/thread_annotations.h"

View file

@ -18,7 +18,7 @@
#include "api/bitrate_constraints.h" #include "api/bitrate_constraints.h"
#include "api/fec_controller.h" #include "api/fec_controller.h"
#include "api/mediatypes.h" #include "api/media_types.h"
#include "api/test/simulated_network.h" #include "api/test/simulated_network.h"
#include "api/video_codecs/video_encoder_config.h" #include "api/video_codecs/video_encoder_config.h"

View file

@ -8,8 +8,8 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_TURNCUSTOMIZER_H_ #ifndef API_TURN_CUSTOMIZER_H_
#define API_TURNCUSTOMIZER_H_ #define API_TURN_CUSTOMIZER_H_
#include <stdlib.h> #include <stdlib.h>
@ -42,4 +42,4 @@ class TurnCustomizer {
} // namespace webrtc } // namespace webrtc
#endif // API_TURNCUSTOMIZER_H_ #endif // API_TURN_CUSTOMIZER_H_

View file

@ -10,10 +10,10 @@
// This file contains enums related to IPv4/IPv6 metrics. // This file contains enums related to IPv4/IPv6 metrics.
#ifndef API_UMAMETRICS_H_ #ifndef API_UMA_METRICS_H_
#define API_UMAMETRICS_H_ #define API_UMA_METRICS_H_
#include "rtc_base/refcount.h" #include "rtc_base/ref_count.h"
namespace webrtc { namespace webrtc {
@ -157,4 +157,4 @@ enum AddIceCandidateResult {
} // namespace webrtc } // namespace webrtc
#endif // API_UMAMETRICS_H_ #endif // API_UMA_METRICS_H_

View file

@ -21,7 +21,7 @@ specific_include_rules = {
], ],
"video_frame_buffer\.h": [ "video_frame_buffer\.h": [
"+rtc_base/refcount.h", "+rtc_base/ref_count.h",
"+rtc_base/scoped_ref_ptr.h", "+rtc_base/scoped_ref_ptr.h",
], ],

View file

@ -13,7 +13,7 @@
#include "api/video/i420_buffer.h" #include "api/video/i420_buffer.h"
#include "rtc_base/checks.h" #include "rtc_base/checks.h"
#include "rtc_base/refcountedobject.h" #include "rtc_base/ref_counted_object.h"
#include "third_party/libyuv/include/libyuv/convert.h" #include "third_party/libyuv/include/libyuv/convert.h"
#include "third_party/libyuv/include/libyuv/scale.h" #include "third_party/libyuv/include/libyuv/scale.h"

View file

@ -14,7 +14,7 @@
#include <utility> #include <utility>
#include "rtc_base/checks.h" #include "rtc_base/checks.h"
#include "rtc_base/refcountedobject.h" #include "rtc_base/ref_counted_object.h"
#include "third_party/libyuv/include/libyuv/convert.h" #include "third_party/libyuv/include/libyuv/convert.h"
#include "third_party/libyuv/include/libyuv/planar_functions.h" #include "third_party/libyuv/include/libyuv/planar_functions.h"
#include "third_party/libyuv/include/libyuv/scale.h" #include "third_party/libyuv/include/libyuv/scale.h"

View file

@ -11,7 +11,7 @@
#include "api/video/video_frame.h" #include "api/video/video_frame.h"
#include "rtc_base/checks.h" #include "rtc_base/checks.h"
#include "rtc_base/timeutils.h" #include "rtc_base/time_utils.h"
namespace webrtc { namespace webrtc {

View file

@ -13,7 +13,7 @@
#include <stdint.h> #include <stdint.h>
#include "rtc_base/refcount.h" #include "rtc_base/ref_count.h"
#include "rtc_base/scoped_ref_ptr.h" #include "rtc_base/scoped_ref_ptr.h"
namespace webrtc { namespace webrtc {

View file

@ -13,7 +13,7 @@
#include <vector> #include <vector>
#include "api/rtpparameters.h" // For DegradationPreference. #include "api/rtp_parameters.h" // For DegradationPreference.
#include "api/video/video_sink_interface.h" #include "api/video/video_sink_interface.h"
#include "api/video/video_source_interface.h" #include "api/video/video_source_interface.h"
#include "api/video_codecs/video_encoder.h" #include "api/video_codecs/video_encoder.h"

View file

@ -11,7 +11,7 @@
#include "api/video_codecs/builtin_video_decoder_factory.h" #include "api/video_codecs/builtin_video_decoder_factory.h"
#include "absl/memory/memory.h" #include "absl/memory/memory.h"
#include "media/engine/internaldecoderfactory.h" #include "media/engine/internal_decoder_factory.h"
namespace webrtc { namespace webrtc {

View file

@ -17,9 +17,9 @@
#include "api/video_codecs/sdp_video_format.h" #include "api/video_codecs/sdp_video_format.h"
#include "api/video_codecs/video_encoder.h" #include "api/video_codecs/video_encoder.h"
#include "media/base/codec.h" #include "media/base/codec.h"
#include "media/base/mediaconstants.h" #include "media/base/media_constants.h"
#include "media/engine/encoder_simulcast_proxy.h" #include "media/engine/encoder_simulcast_proxy.h"
#include "media/engine/internalencoderfactory.h" #include "media/engine/internal_encoder_factory.h"
#include "rtc_base/checks.h" #include "rtc_base/checks.h"
namespace webrtc { namespace webrtc {

View file

@ -32,7 +32,7 @@
#include "modules/video_coding/include/video_codec_interface.h" #include "modules/video_coding/include/video_codec_interface.h"
#include "modules/video_coding/include/video_error_codes.h" #include "modules/video_coding/include/video_error_codes.h"
#include "modules/video_coding/utility/simulcast_rate_allocator.h" #include "modules/video_coding/utility/simulcast_rate_allocator.h"
#include "rtc_base/fakeclock.h" #include "rtc_base/fake_clock.h"
#include "rtc_base/scoped_ref_ptr.h" #include "rtc_base/scoped_ref_ptr.h"
#include "test/field_trial.h" #include "test/field_trial.h"
#include "test/gmock.h" #include "test/gmock.h"

View file

@ -18,7 +18,7 @@
#include "absl/types/optional.h" #include "absl/types/optional.h"
#include "api/video_codecs/sdp_video_format.h" #include "api/video_codecs/sdp_video_format.h"
#include "api/video_codecs/video_codec.h" #include "api/video_codecs/video_codec.h"
#include "rtc_base/refcount.h" #include "rtc_base/ref_count.h"
#include "rtc_base/scoped_ref_ptr.h" #include "rtc_base/scoped_ref_ptr.h"
namespace webrtc { namespace webrtc {

View file

@ -8,10 +8,10 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef API_VIDEOSOURCEPROXY_H_ #ifndef API_VIDEO_TRACK_SOURCE_PROXY_H_
#define API_VIDEOSOURCEPROXY_H_ #define API_VIDEO_TRACK_SOURCE_PROXY_H_
#include "api/mediastreaminterface.h" #include "api/media_stream_interface.h"
#include "api/proxy.h" #include "api/proxy.h"
namespace webrtc { namespace webrtc {
@ -38,4 +38,4 @@ END_PROXY_MAP()
} // namespace webrtc } // namespace webrtc
#endif // API_VIDEOSOURCEPROXY_H_ #endif // API_VIDEO_TRACK_SOURCE_PROXY_H_

View file

@ -11,7 +11,7 @@
#ifndef AUDIO_AUDIO_LEVEL_H_ #ifndef AUDIO_AUDIO_LEVEL_H_
#define AUDIO_AUDIO_LEVEL_H_ #define AUDIO_AUDIO_LEVEL_H_
#include "rtc_base/criticalsection.h" #include "rtc_base/critical_section.h"
#include "rtc_base/thread_annotations.h" #include "rtc_base/thread_annotations.h"
namespace webrtc { namespace webrtc {

View file

@ -17,7 +17,7 @@
#include "api/array_view.h" #include "api/array_view.h"
#include "api/audio_codecs/audio_format.h" #include "api/audio_codecs/audio_format.h"
#include "api/call/audio_sink.h" #include "api/call/audio_sink.h"
#include "api/rtpparameters.h" #include "api/rtp_parameters.h"
#include "audio/audio_send_stream.h" #include "audio/audio_send_stream.h"
#include "audio/audio_state.h" #include "audio/audio_state.h"
#include "audio/channel_receive.h" #include "audio/channel_receive.h"
@ -27,7 +27,7 @@
#include "rtc_base/checks.h" #include "rtc_base/checks.h"
#include "rtc_base/logging.h" #include "rtc_base/logging.h"
#include "rtc_base/strings/string_builder.h" #include "rtc_base/strings/string_builder.h"
#include "rtc_base/timeutils.h" #include "rtc_base/time_utils.h"
namespace webrtc { namespace webrtc {

View file

@ -19,7 +19,7 @@
#include "audio/audio_state.h" #include "audio/audio_state.h"
#include "call/audio_receive_stream.h" #include "call/audio_receive_stream.h"
#include "call/syncable.h" #include "call/syncable.h"
#include "rtc_base/constructormagic.h" #include "rtc_base/constructor_magic.h"
#include "rtc_base/thread_checker.h" #include "rtc_base/thread_checker.h"
namespace webrtc { namespace webrtc {

View file

@ -19,7 +19,7 @@
#include "api/audio_codecs/audio_encoder_factory.h" #include "api/audio_codecs/audio_encoder_factory.h"
#include "api/audio_codecs/audio_format.h" #include "api/audio_codecs/audio_format.h"
#include "api/call/transport.h" #include "api/call/transport.h"
#include "api/crypto/frameencryptorinterface.h" #include "api/crypto/frame_encryptor_interface.h"
#include "audio/audio_state.h" #include "audio/audio_state.h"
#include "audio/channel_send.h" #include "audio/channel_send.h"
#include "audio/conversion.h" #include "audio/conversion.h"
@ -37,7 +37,7 @@
#include "rtc_base/logging.h" #include "rtc_base/logging.h"
#include "rtc_base/strings/audio_format_to_string.h" #include "rtc_base/strings/audio_format_to_string.h"
#include "rtc_base/task_queue.h" #include "rtc_base/task_queue.h"
#include "rtc_base/timeutils.h" #include "rtc_base/time_utils.h"
#include "system_wrappers/include/field_trial.h" #include "system_wrappers/include/field_trial.h"
namespace webrtc { namespace webrtc {

View file

@ -20,7 +20,7 @@
#include "call/audio_state.h" #include "call/audio_state.h"
#include "call/bitrate_allocator.h" #include "call/bitrate_allocator.h"
#include "modules/rtp_rtcp/include/rtp_rtcp.h" #include "modules/rtp_rtcp/include/rtp_rtcp.h"
#include "rtc_base/constructormagic.h" #include "rtc_base/constructor_magic.h"
#include "rtc_base/race_checker.h" #include "rtc_base/race_checker.h"
#include "rtc_base/thread_checker.h" #include "rtc_base/thread_checker.h"

View file

@ -19,7 +19,7 @@
#include "modules/audio_device/include/audio_device.h" #include "modules/audio_device/include/audio_device.h"
#include "rtc_base/checks.h" #include "rtc_base/checks.h"
#include "rtc_base/logging.h" #include "rtc_base/logging.h"
#include "rtc_base/refcountedobject.h" #include "rtc_base/ref_counted_object.h"
#include "rtc_base/thread.h" #include "rtc_base/thread.h"
namespace webrtc { namespace webrtc {

Some files were not shown because too many files have changed in this diff Show more