OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ScopedClosureRunner
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/base/
callback_helpers.cc
11
ScopedClosureRunner
::
ScopedClosureRunner
() {
14
ScopedClosureRunner
::
ScopedClosureRunner
(const Closure& closure)
18
ScopedClosureRunner
::~
ScopedClosureRunner
() {
23
void
ScopedClosureRunner
::Reset() {
29
void
ScopedClosureRunner
::Reset(const Closure& closure) {
36
Closure
ScopedClosureRunner
::Release() {
callback_helpers.h
30
//
ScopedClosureRunner
is akin to scoped_ptr for Closures. It ensures that the
32
class BASE_EXPORT
ScopedClosureRunner
{
34
ScopedClosureRunner
();
35
explicit
ScopedClosureRunner
(const Closure& closure);
36
~
ScopedClosureRunner
();
45
DISALLOW_COPY_AND_ASSIGN(
ScopedClosureRunner
);
Completed in 32 milliseconds