| Index: base/bind_helpers.cc
|
| diff --git a/base/bind_helpers.cc b/base/bind_helpers.cc
|
| index f2fc3bb0daaed9697a899b2e80f5322e1a074fe9..f1fe46da47ac0bbb0d4de0bd0974f2eca3ecf9b5 100644
|
| --- a/base/bind_helpers.cc
|
| +++ b/base/bind_helpers.cc
|
| @@ -11,19 +11,4 @@ namespace base {
|
| void DoNothing() {
|
| }
|
|
|
| -ScopedClosureRunner::ScopedClosureRunner(const Closure& closure)
|
| - : closure_(closure) {
|
| -}
|
| -
|
| -ScopedClosureRunner::~ScopedClosureRunner() {
|
| - if (!closure_.is_null())
|
| - closure_.Run();
|
| -}
|
| -
|
| -Closure ScopedClosureRunner::Release() {
|
| - Closure result = closure_;
|
| - closure_.Reset();
|
| - return result;
|
| -}
|
| -
|
| } // namespace base
|
|
|