Use SequenceChecker from public API

Bug: webrtc:12419
Change-Id: I00cca16a0ec70246156ba00b97aa7ae5ccbf5364
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/205323
Commit-Queue: Artem Titov <titovartem@webrtc.org>
Reviewed-by: Tommi <tommi@webrtc.org>
Reviewed-by: Danil Chapovalov <danilchap@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#33220}
This commit is contained in:
Artem Titov
2021-02-10 14:31:24 +01:00
committed by Commit Bot
parent 92eebefd47
commit d15a575ec3
193 changed files with 258 additions and 219 deletions

View File

@ -17,11 +17,11 @@ rtc_library("repeating_task") {
":to_queued_task",
"..:logging",
"..:timeutils",
"../../api:sequence_checker",
"../../api/task_queue",
"../../api/units:time_delta",
"../../api/units:timestamp",
"../../system_wrappers:system_wrappers",
"../synchronization:sequence_checker",
]
absl_deps = [ "//third_party/abseil-cpp/absl/memory" ]
}
@ -35,7 +35,7 @@ rtc_library("pending_task_safety_flag") {
"..:checks",
"..:refcount",
"../../api:scoped_refptr",
"../synchronization:sequence_checker",
"../../api:sequence_checker",
"../system:no_unique_address",
]
}

View File

@ -12,9 +12,9 @@
#define RTC_BASE_TASK_UTILS_PENDING_TASK_SAFETY_FLAG_H_
#include "api/scoped_refptr.h"
#include "api/sequence_checker.h"
#include "rtc_base/checks.h"
#include "rtc_base/ref_count.h"
#include "rtc_base/synchronization/sequence_checker.h"
#include "rtc_base/system/no_unique_address.h"
namespace webrtc {