Chromium Code Reviews| Index: base/bind_internal.h |
| diff --git a/base/bind_internal.h b/base/bind_internal.h |
| index 5845a4d031de9c3df658820a4b2f4cc3e545fe61..17f78a3d67b37f07a87df2385c1dd5ca08fff6bf 100644 |
| --- a/base/bind_internal.h |
| +++ b/base/bind_internal.h |
| @@ -470,8 +470,8 @@ struct BindState final : BindStateBase { |
| ~BindState() {} |
| - static void Destroy(BindStateBase* self) { |
| - delete static_cast<BindState*>(self); |
| + static void Destroy(const BindStateBase* self) { |
| + delete static_cast<const BindState*>(self); |
| } |
| }; |