Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Side by Side Diff: base/callback_helpers.cc

Issue 2513363003: repro for crbug.com/663886
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/callback_helpers.h ('k') | base/callback_helpers_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/callback_helpers.h" 5 #include "base/callback_helpers.h"
6 6
7 #include "base/callback.h" 7 #include "base/callback.h"
8 8
9 namespace base { 9 namespace base {
10
11 ScopedClosureRunner::ScopedClosureRunner() {}
12
13 ScopedClosureRunner::ScopedClosureRunner(const Closure& closure)
14 : closure_(closure) {}
15
16 ScopedClosureRunner::~ScopedClosureRunner() {
17 if (!closure_.is_null())
18 closure_.Run();
19 }
20
21 ScopedClosureRunner::ScopedClosureRunner(ScopedClosureRunner&& other)
22 : closure_(other.Release()) {}
23
24 ScopedClosureRunner& ScopedClosureRunner::operator=(
25 ScopedClosureRunner&& other) {
26 ReplaceClosure(other.Release());
27 return *this;
28 }
29
30 void ScopedClosureRunner::RunAndReset() {
31 Closure old_closure = Release();
32 if (!old_closure.is_null())
33 old_closure.Run();
34 }
35
36 void ScopedClosureRunner::ReplaceClosure(const Closure& closure) {
37 closure_ = closure;
38 }
39
40 Closure ScopedClosureRunner::Release() {
41 Closure result = closure_;
42 closure_.Reset();
43 return result;
44 }
45
46 } // namespace base 10 } // namespace base
OLDNEW
« no previous file with comments | « base/callback_helpers.h ('k') | base/callback_helpers_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698