WebKit roll 98705:98715
[chromium-blink-merge.git] / base / callback_internal.cc
blobd9d1e6f9eb60426d920e034ef0b70b1d808f2f0e
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/callback_internal.h"
7 namespace base {
8 namespace internal {
10 bool CallbackBase::is_null() const {
11 return invoker_storage_.get() == NULL;
14 void CallbackBase::Reset() {
15 invoker_storage_ = NULL;
16 polymorphic_invoke_ = NULL;
19 bool CallbackBase::Equals(const CallbackBase& other) const {
20 return invoker_storage_.get() == other.invoker_storage_.get() &&
21 polymorphic_invoke_ == other.polymorphic_invoke_;
24 CallbackBase::CallbackBase(InvokeFuncStorage polymorphic_invoke,
25 scoped_refptr<InvokerStorageBase>* invoker_storage)
26 : polymorphic_invoke_(polymorphic_invoke) {
27 if (invoker_storage) {
28 invoker_storage_.swap(*invoker_storage);
32 CallbackBase::~CallbackBase() {
35 } // namespace base
36 } // namespace internal