Home | History | Annotate | Download | only in base

Lines Matching defs:ScopedClosureRunner

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);