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

Side by Side Diff: base/thread_task_runner_handle.cc

Issue 10380016: Add base::ThreadTaskRunner class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 | Annotate | Revision Log
« base/message_loop.cc ('K') | « base/thread_task_runner_handle.h ('k') | no next file » | 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 ThreadTaskRunnerHandle::ThreadTaskRunnerHandle(
28 const scoped_refptr<SingleThreadTaskRunner>& task_runner)
29 : task_runner_(task_runner) {
30 DCHECK(task_runner_->BelongsToCurrentThread());
31 DCHECK(!lazy_tls_ptr.Pointer()->Get());
32 lazy_tls_ptr.Pointer()->Set(this);
33 }
34
35 ThreadTaskRunnerHandle::~ThreadTaskRunnerHandle() {
36 DCHECK(task_runner_->BelongsToCurrentThread());
37 DCHECK_EQ(lazy_tls_ptr.Pointer()->Get(), this);
38 lazy_tls_ptr.Pointer()->Set(NULL);
39 }
40
41 } // namespace base
OLDNEW
« base/message_loop.cc ('K') | « base/thread_task_runner_handle.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698