blob: 49488296f2a01b27c6d76be422332b2cdcab1ef6 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
// 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.
// Some basic utilities for aiding in the management of Tasks and Callbacks.
//
// AutoCallbackRunner is akin to scoped_ptr for callbacks. It is useful for
// ensuring a callback is executed and delete in the face of multiple return
// points in a function.
//
// TaskToCallbackAdapter converts a Task to a Callback0::Type since the two type
// hierarchies are strangely separate.
//
// CleanupCallback wraps another Callback and provides the ability to register
// objects for deletion as well as cleanup tasks that will be run on the
// callback's destruction. The deletion and cleanup tasks will be run on
// whatever thread the CleanupCallback is destroyed in.
#ifndef MEDIA_BASE_CALLBACK_
#define MEDIA_BASE_CALLBACK_
#include <vector>
#include "base/callback_old.h"
#include "base/memory/scoped_ptr.h"
#include "base/task.h"
namespace media {
class AutoCallbackRunner {
public:
// Takes ownership of the callback.
explicit AutoCallbackRunner(Callback0::Type* callback)
: callback_(callback) {
}
~AutoCallbackRunner();
Callback0::Type* release() { return callback_.release(); }
private:
scoped_ptr<Callback0::Type> callback_;
DISALLOW_COPY_AND_ASSIGN(AutoCallbackRunner);
};
class TaskToCallbackAdapter : public Callback0::Type {
public:
static Callback0::Type* NewCallback(Task* task);
virtual ~TaskToCallbackAdapter();
virtual void RunWithParams(const Tuple0& params);
private:
TaskToCallbackAdapter(Task* task);
scoped_ptr<Task> task_;
DISALLOW_COPY_AND_ASSIGN(TaskToCallbackAdapter);
};
} // namespace media
#endif // MEDIA_BASE_CALLBACK_
|