blob: 56194d2d605d017d816239472a18673a59bc23b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// 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/worker_pool.h"
#include "base/bind.h"
#include "base/compiler_specific.h"
#include "base/threading/post_task_and_reply_impl.h"
#include "base/tracked_objects.h"
namespace base {
namespace {
class PostTaskAndReplyWorkerPool : public internal::PostTaskAndReplyImpl {
public:
PostTaskAndReplyWorkerPool(bool task_is_slow) : task_is_slow_(task_is_slow) {
}
private:
virtual bool PostTask(const tracked_objects::Location& from_here,
const Closure& task) OVERRIDE {
return WorkerPool::PostTask(from_here, task, task_is_slow_);
}
bool task_is_slow_;
};
} // namespace
bool WorkerPool::PostTaskAndReply(const tracked_objects::Location& from_here,
const Closure& task,
const Closure& reply,
bool task_is_slow) {
return PostTaskAndReplyWorkerPool(task_is_slow).PostTaskAndReply(
from_here, task, reply);
}
} // namespace base
|