| Index: base/callback_internal.h
|
| diff --git a/base/callback_internal.h b/base/callback_internal.h
|
| index 0fe0b2d9e198716690365dc8d6a4c82508a79188..e3745097eb68dc1c1a8f7c053aca5c1a71491855 100644
|
| --- a/base/callback_internal.h
|
| +++ b/base/callback_internal.h
|
| @@ -62,6 +62,9 @@ class BASE_EXPORT CallbackBase<CopyMode::MoveOnly> {
|
| CallbackBase(CallbackBase&& c);
|
| CallbackBase& operator=(CallbackBase&& c);
|
|
|
| + explicit CallbackBase(const CallbackBase<CopyMode::Copyable>& c);
|
| + CallbackBase& operator=(const CallbackBase<CopyMode::Copyable>& c);
|
| +
|
| // Returns true if Callback is null (doesn't refer to anything).
|
| bool is_null() const { return bind_state_.get() == NULL; }
|
| explicit operator bool() const { return !is_null(); }
|
|
|