mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 05:40:42 +01:00
![]() WebRTC is now using C++14 so there is no need to use the Abseil version of std::make_unique. This CL has been created with the following steps: git grep -l absl::make_unique | sort | uniq > /tmp/make_unique.txt git grep -l absl::WrapUnique | sort | uniq > /tmp/wrap_unique.txt git grep -l "#include <memory>" | sort | uniq > /tmp/memory.txt diff --new-line-format="" --unchanged-line-format="" \ /tmp/make_unique.txt /tmp/wrap_unique.txt | sort | \ uniq > /tmp/only_make_unique.txt diff --new-line-format="" --unchanged-line-format="" \ /tmp/only_make_unique.txt /tmp/memory.txt | \ xargs grep -l "absl/memory" > /tmp/add-memory.txt git grep -l "\babsl::make_unique\b" | \ xargs sed -i "s/\babsl::make_unique\b/std::make_unique/g" git checkout PRESUBMIT.py abseil-in-webrtc.md cat /tmp/add-memory.txt | \ xargs sed -i \ 's/#include "absl\/memory\/memory.h"/#include <memory>/g' git cl format # Manual fix order of the new inserted #include <memory> cat /tmp/only_make_unique | xargs grep -l "#include <memory>" | \ xargs sed -i '/#include "absl\/memory\/memory.h"/d' git ls-files | grep BUILD.gn | \ xargs sed -i '/\/\/third_party\/abseil-cpp\/absl\/memory/d' python tools_webrtc/gn_check_autofix.py \ -m tryserver.webrtc -b linux_rel # Repead the gn_check_autofix step for other platforms git ls-files | grep BUILD.gn | \ xargs sed -i 's/absl\/memory:memory/absl\/memory/g' git cl format Bug: webrtc:10945 Change-Id: I3fe28ea80f4dd3ba3cf28effd151d5e1f19aff89 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/153221 Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Alessio Bazzica <alessiob@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Cr-Commit-Position: refs/heads/master@{#29209} |
||
---|---|---|
.. | ||
audio | ||
audio_codecs | ||
call | ||
crypto | ||
rtc_event_log | ||
stats | ||
task_queue | ||
test | ||
transport | ||
units | ||
video | ||
video_codecs | ||
array_view.h | ||
array_view_unittest.cc | ||
async_resolver_factory.h | ||
audio_options.cc | ||
audio_options.h | ||
bitrate_constraints.h | ||
BUILD.gn | ||
candidate.cc | ||
candidate.h | ||
congestion_control_interface.h | ||
create_peerconnection_factory.cc | ||
create_peerconnection_factory.h | ||
crypto_params.h | ||
data_channel_interface.cc | ||
data_channel_interface.h | ||
data_channel_transport_interface.h | ||
datagram_transport_interface.h | ||
DEPS | ||
DESIGN.md | ||
dtls_transport_interface.cc | ||
dtls_transport_interface.h | ||
dtmf_sender_interface.h | ||
fec_controller.h | ||
fec_controller_override.h | ||
function_view.h | ||
function_view_unittest.cc | ||
ice_transport_factory.cc | ||
ice_transport_factory.h | ||
ice_transport_interface.h | ||
jsep.cc | ||
jsep.h | ||
jsep_ice_candidate.cc | ||
jsep_ice_candidate.h | ||
jsep_session_description.h | ||
media_stream_interface.cc | ||
media_stream_interface.h | ||
media_stream_proxy.h | ||
media_stream_track_proxy.h | ||
media_transport_config.h | ||
media_transport_interface.h | ||
media_types.cc | ||
media_types.h | ||
network_state_predictor.h | ||
notifier.h | ||
OWNERS | ||
packet_socket_factory.h | ||
peer_connection_factory_proxy.h | ||
peer_connection_interface.cc | ||
peer_connection_interface.h | ||
peer_connection_proxy.h | ||
proxy.cc | ||
proxy.h | ||
README.md | ||
ref_counted_base.h | ||
rtc_error.cc | ||
rtc_error.h | ||
rtc_error_unittest.cc | ||
rtc_event_log_output.h | ||
rtc_event_log_output_file.cc | ||
rtc_event_log_output_file.h | ||
rtc_event_log_output_file_unittest.cc | ||
rtp_headers.cc | ||
rtp_headers.h | ||
rtp_packet_info.cc | ||
rtp_packet_info.h | ||
rtp_packet_info_unittest.cc | ||
rtp_packet_infos.h | ||
rtp_packet_infos_unittest.cc | ||
rtp_parameters.cc | ||
rtp_parameters.h | ||
rtp_parameters_unittest.cc | ||
rtp_receiver_interface.cc | ||
rtp_receiver_interface.h | ||
rtp_sender_interface.cc | ||
rtp_sender_interface.h | ||
rtp_transceiver_interface.cc | ||
rtp_transceiver_interface.h | ||
scoped_refptr.h | ||
sctp_transport_interface.cc | ||
sctp_transport_interface.h | ||
set_remote_description_observer_interface.h | ||
stats_types.cc | ||
stats_types.h | ||
turn_customizer.h | ||
uma_metrics.h | ||
video_track_source_proxy.h |
How to write code in the api/
directory
Mostly, just follow the regular style guide, but:
- Note that
api/
code is not exempt from the “.h
and.cc
files come in pairs” rule, so if you declare something inapi/path/to/foo.h
, it should be defined inapi/path/to/foo.cc
. - Headers in
api/
should, if possible, not#include
headers outsideapi/
. It’s not always possible to avoid this, but be aware that it adds to a small mountain of technical debt that we’re trying to shrink. .cc
files inapi/
, on the other hand, are free to#include
headers outsideapi/
.
That is, the preferred way for api/
code to access non-api/
code is to call
it from a .cc
file, so that users of our API headers won’t transitively
#include
non-public headers.
For headers in api/
that need to refer to non-public types, forward
declarations are often a lesser evil than including non-public header files. The
usual rules still apply, though.
.cc
files in api/
should preferably be kept reasonably small. If a
substantial implementation is needed, consider putting it with our non-public
code, and just call it from the api/
.cc
file.