Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Side by Side Diff: base/thread_task_runner_handle.cc

Issue 1647803004: Move base to DEPS (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/thread_task_runner_handle.h ('k') | base/threading/OWNERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/thread_task_runner_handle.h"
6
7 #include "base/lazy_instance.h"
8 #include "base/single_thread_task_runner.h"
9 #include "base/threading/thread_local.h"
10
11 namespace base {
12
13 namespace {
14
15 base::LazyInstance<base::ThreadLocalPointer<ThreadTaskRunnerHandle> >
16 lazy_tls_ptr = LAZY_INSTANCE_INITIALIZER;
17
18 } // namespace
19
20 // static
21 scoped_refptr<SingleThreadTaskRunner> ThreadTaskRunnerHandle::Get() {
22 ThreadTaskRunnerHandle* current = lazy_tls_ptr.Pointer()->Get();
23 DCHECK(current);
24 return current->task_runner_;
25 }
26
27 // static
28 bool ThreadTaskRunnerHandle::IsSet() {
29 return lazy_tls_ptr.Pointer()->Get() != NULL;
30 }
31
32 ThreadTaskRunnerHandle::ThreadTaskRunnerHandle(
33 const scoped_refptr<SingleThreadTaskRunner>& task_runner)
34 : task_runner_(task_runner) {
35 DCHECK(task_runner_->BelongsToCurrentThread());
36 DCHECK(!lazy_tls_ptr.Pointer()->Get());
37 lazy_tls_ptr.Pointer()->Set(this);
38 }
39
40 ThreadTaskRunnerHandle::~ThreadTaskRunnerHandle() {
41 DCHECK(task_runner_->BelongsToCurrentThread());
42 DCHECK_EQ(lazy_tls_ptr.Pointer()->Get(), this);
43 lazy_tls_ptr.Pointer()->Set(NULL);
44 }
45
46 } // namespace base
OLDNEW
« no previous file with comments | « base/thread_task_runner_handle.h ('k') | base/threading/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698