HomeSort by relevance Sort by last modified time
    Searched defs:ScopedClosureRunner (Results 1 - 2 of 2) sorted by null

  /external/libchrome/base/
callback_helpers.cc 9 ScopedClosureRunner::ScopedClosureRunner() = default;
11 ScopedClosureRunner::ScopedClosureRunner(OnceClosure closure)
14 ScopedClosureRunner::~ScopedClosureRunner() {
19 ScopedClosureRunner::ScopedClosureRunner(ScopedClosureRunner&& other)
22 ScopedClosureRunner& ScopedClosureRunner::operator=
    [all...]
callback_helpers.h 73 // ScopedClosureRunner is akin to std::unique_ptr<> for Closures. It ensures
75 class BASE_EXPORT ScopedClosureRunner {
77 ScopedClosureRunner();
78 explicit ScopedClosureRunner(OnceClosure closure);
79 ~ScopedClosureRunner();
81 ScopedClosureRunner(ScopedClosureRunner&& other);
85 ScopedClosureRunner& operator=(ScopedClosureRunner&& other);
99 DISALLOW_COPY_AND_ASSIGN(ScopedClosureRunner);
    [all...]

Completed in 58 milliseconds