webrtc/modules/pacing
Karl Wiberg 918f50c5d1 Use absl::make_unique and absl::WrapUnique directly
Instead of going through our wrappers in ptr_util.h.

This CL was generated by the following script:

  git grep -l ptr_util | xargs perl -pi -e 's,#include "rtc_base/ptr_util.h",#include "absl/memory/memory.h",'
  git grep -l MakeUnique | xargs perl -pi -e 's,\b(rtc::)?MakeUnique\b,absl::make_unique,g'
  git grep -l WrapUnique | xargs perl -pi -e 's,\b(rtc::)?WrapUnique\b,absl::WrapUnique,g'
  git checkout -- rtc_base/ptr_util{.h,_unittest.cc}
  git cl format

Followed by manually adding dependencies on
//third_party/abseil-cpp/absl/memory until `gn check` stopped
complaining.

Bug: webrtc:9473
Change-Id: I89ccd363f070479b8c431eb2c3d404a46eaacc1c
Reviewed-on: https://webrtc-review.googlesource.com/86600
Commit-Queue: Karl Wiberg <kwiberg@webrtc.org>
Reviewed-by: Danil Chapovalov <danilchap@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#23850}
2018-07-05 10:59:49 +00:00
..
mock Reformat the WebRTC code base 2018-06-19 14:00:39 +00:00
bitrate_prober.cc Use absl::make_unique and absl::WrapUnique directly 2018-07-05 10:59:49 +00:00
bitrate_prober.h Delete unneeded includes of basictypes.h. 2018-05-21 19:35:08 +00:00
bitrate_prober_unittest.cc Reformat the WebRTC code base 2018-06-19 14:00:39 +00:00
BUILD.gn Use absl::make_unique and absl::WrapUnique directly 2018-07-05 10:59:49 +00:00
DEPS Fixing WebRTC after moving from src/webrtc to src/ 2017-09-15 05:02:56 +00:00
interval_budget.cc Added limit to elapsed time in paced sender. 2018-02-28 09:40:00 +00:00
interval_budget.h Adding NOLINT for typedefs.h and common_types.h 2017-09-15 13:03:51 +00:00
interval_budget_unittest.cc Fixing WebRTC after moving from src/webrtc to src/ 2017-09-15 05:02:56 +00:00
OWNERS Adds srte@webrtc.org as modules/pacing/ OWNER. 2018-06-29 15:25:24 +00:00
paced_sender.cc Use absl::make_unique and absl::WrapUnique directly 2018-07-05 10:59:49 +00:00
paced_sender.h Adds field trial for disabling pacer queue draining. 2018-06-28 13:46:22 +00:00
paced_sender_unittest.cc Reformat the WebRTC code base 2018-06-19 14:00:39 +00:00
pacer.h Preparing for task queue in congenstion controller 2018-02-20 12:35:15 +00:00
packet_queue.cc Preparing for task queue in congenstion controller 2018-02-20 12:35:15 +00:00
packet_queue.h Renamed PacketQueue2 to RoundRobinPacketQueue. 2018-02-07 13:11:38 +00:00
packet_queue_interface.cc Renamed PacketQueue2 to RoundRobinPacketQueue. 2018-02-07 13:11:38 +00:00
packet_queue_interface.h Renamed PacketQueue2 to RoundRobinPacketQueue. 2018-02-07 13:11:38 +00:00
packet_router.cc Make packet router send padding on rtp module that last sent media. 2018-05-17 12:21:11 +00:00
packet_router.h Make packet router send padding on rtp module that last sent media. 2018-05-17 12:21:11 +00:00
packet_router_unittest.cc Reformat the WebRTC code base 2018-06-19 14:00:39 +00:00
round_robin_packet_queue.cc Renamed PacketQueue2 to RoundRobinPacketQueue. 2018-02-07 13:11:38 +00:00
round_robin_packet_queue.h Replace rtc::Optional with absl::optional 2018-06-18 10:24:48 +00:00