From 1ba1fc9598c46b281bc16635c90752f26241a8ac Mon Sep 17 00:00:00 2001 From: Artem Titov Date: Wed, 10 Feb 2021 16:19:45 +0100 Subject: [PATCH] Remove old sequence checker header Bug: webrtc:12419 Change-Id: I5f43e33ab0c23e79d7fcc8e2f8081dd4b5f350e8 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/206807 Reviewed-by: Harald Alvestrand Commit-Queue: Artem Titov Cr-Commit-Position: refs/heads/master@{#33247} --- rtc_base/BUILD.gn | 1 - rtc_base/synchronization/BUILD.gn | 5 ----- rtc_base/synchronization/sequence_checker.h | 11 ----------- 3 files changed, 17 deletions(-) delete mode 100644 rtc_base/synchronization/sequence_checker.h diff --git a/rtc_base/BUILD.gn b/rtc_base/BUILD.gn index 203d9d1d97..45c3c11746 100644 --- a/rtc_base/BUILD.gn +++ b/rtc_base/BUILD.gn @@ -799,7 +799,6 @@ rtc_library("threading") { "../api:sequence_checker", "../api/task_queue", "synchronization:mutex", - "synchronization:sequence_checker", "system:no_unique_address", "system:rtc_export", "task_utils:pending_task_safety_flag", diff --git a/rtc_base/synchronization/BUILD.gn b/rtc_base/synchronization/BUILD.gn index 55c5fa8ab2..73ff667246 100644 --- a/rtc_base/synchronization/BUILD.gn +++ b/rtc_base/synchronization/BUILD.gn @@ -44,11 +44,6 @@ rtc_library("mutex") { } } -rtc_source_set("sequence_checker") { - sources = [ "sequence_checker.h" ] - deps = [ "../../api:sequence_checker" ] -} - rtc_library("sequence_checker_internal") { visibility = [ "../../api:sequence_checker" ] sources = [ diff --git a/rtc_base/synchronization/sequence_checker.h b/rtc_base/synchronization/sequence_checker.h deleted file mode 100644 index 52577bce72..0000000000 --- a/rtc_base/synchronization/sequence_checker.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright 2019 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. - */ - -#include "api/sequence_checker.h"