summaryrefslogtreecommitdiff
path: root/chromium/base/ios/callback_counter.mm
blob: 575500925ce2efa92362f0aa18c2929daedfd5af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "base/ios/callback_counter.h"

CallbackCounter::CallbackCounter(const FinalCallback& final_callback)
    : callback_count_(0U), final_callback_(final_callback) {
  DCHECK(!final_callback.is_null());
}

CallbackCounter::~CallbackCounter() {
  DCHECK_EQ(0U, callback_count_);
}

void CallbackCounter::IncrementCount(int count) {
  DCHECK(thread_checker_.CalledOnValidThread());
  DCHECK(!final_callback_.is_null());
  callback_count_ += count;
}

void CallbackCounter::IncrementCount() {
  IncrementCount(1);
}

void CallbackCounter::DecrementCount() {
  DCHECK(thread_checker_.CalledOnValidThread());
  DCHECK(callback_count_);

  --callback_count_;
  if (callback_count_ == 0) {
    final_callback_.Run();
    final_callback_.Reset();
  }
}