| Index: base/threading/non_thread_safe_impl.cc
|
| diff --git a/base/threading/non_thread_safe_impl.cc b/base/threading/non_thread_safe_impl.cc
|
| deleted file mode 100644
|
| index 7e729d9ee4265143788737273ea8eef28cecce81..0000000000000000000000000000000000000000
|
| --- a/base/threading/non_thread_safe_impl.cc
|
| +++ /dev/null
|
| @@ -1,23 +0,0 @@
|
| -// Copyright (c) 2012 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 {
|
| -
|
| -bool NonThreadSafeImpl::CalledOnValidThread() const {
|
| - return thread_checker_.CalledOnValidThread();
|
| -}
|
| -
|
| -NonThreadSafeImpl::~NonThreadSafeImpl() {
|
| - DCHECK(CalledOnValidThread());
|
| -}
|
| -
|
| -void NonThreadSafeImpl::DetachFromThread() {
|
| - thread_checker_.DetachFromThread();
|
| -}
|
| -
|
| -} // namespace base
|
|
|