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

Side by Side Diff: base/threading/post_task_and_reply_impl.h

Issue 1641513004: Update //base to chromium 9659b08ea5a34f889dc4166217f438095ddc10d2 (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/threading/platform_thread_win.cc ('k') | base/threading/simple_thread.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file contains the implementation shared by 5 // This file contains the implementation shared by
6 // TaskRunner::PostTaskAndReply and WorkerPool::PostTaskAndReply. 6 // TaskRunner::PostTaskAndReply and WorkerPool::PostTaskAndReply.
7 7
8 #ifndef BASE_THREADING_POST_TASK_AND_REPLY_IMPL_H_ 8 #ifndef BASE_THREADING_POST_TASK_AND_REPLY_IMPL_H_
9 #define BASE_THREADING_POST_TASK_AND_REPLY_IMPL_H_ 9 #define BASE_THREADING_POST_TASK_AND_REPLY_IMPL_H_
10 10
11 #include "base/callback_forward.h" 11 #include "base/callback_forward.h"
12 #include "base/location.h" 12 #include "base/location.h"
13 13
14 namespace base { 14 namespace base {
15 namespace internal { 15 namespace internal {
16 16
17 // Inherit from this in a class that implements PostTask appropriately 17 // Inherit from this in a class that implements PostTask appropriately
18 // for sending to a destination thread. 18 // for sending to a destination thread.
19 // 19 //
20 // Note that 'reply' will always get posted back to your current 20 // Note that 'reply' will always get posted back to your current
21 // MessageLoop. 21 // MessageLoop.
22 // 22 //
23 // If you're looking for a concrete implementation of 23 // If you're looking for a concrete implementation of
24 // PostTaskAndReply, you probably want base::SingleThreadTaskRunner, or you 24 // PostTaskAndReply, you probably want base::SingleThreadTaskRunner, or you
25 // may want base::WorkerPool. 25 // may want base::WorkerPool.
26 class PostTaskAndReplyImpl { 26 class PostTaskAndReplyImpl {
27 public: 27 public:
28 virtual ~PostTaskAndReplyImpl() = default;
29
28 // Implementation for TaskRunner::PostTaskAndReply and 30 // Implementation for TaskRunner::PostTaskAndReply and
29 // WorkerPool::PostTaskAndReply. 31 // WorkerPool::PostTaskAndReply.
30 bool PostTaskAndReply(const tracked_objects::Location& from_here, 32 bool PostTaskAndReply(const tracked_objects::Location& from_here,
31 const Closure& task, 33 const Closure& task,
32 const Closure& reply); 34 const Closure& reply);
33 35
34 private: 36 private:
35 virtual bool PostTask(const tracked_objects::Location& from_here, 37 virtual bool PostTask(const tracked_objects::Location& from_here,
36 const Closure& task) = 0; 38 const Closure& task) = 0;
37 }; 39 };
38 40
39 } // namespace internal 41 } // namespace internal
40 } // namespace base 42 } // namespace base
41 43
42 #endif // BASE_THREADING_POST_TASK_AND_REPLY_IMPL_H_ 44 #endif // BASE_THREADING_POST_TASK_AND_REPLY_IMPL_H_
OLDNEW
« no previous file with comments | « base/threading/platform_thread_win.cc ('k') | base/threading/simple_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698