blob: f9c18c2d147aadc5ae66d21b38f931fcabc8507b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/threading/non_thread_safe_impl.h"
#include "base/logging.h"
namespace base {
NonThreadSafeImpl::~NonThreadSafeImpl() {
DCHECK(CalledOnValidThread());
}
bool NonThreadSafeImpl::CalledOnValidThread() const {
return thread_checker_.CalledOnValidThread();
}
void NonThreadSafeImpl::DetachFromThread() {
thread_checker_.DetachFromThread();
}
} // namespace base
|