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
   36
   37
   38
   39
   40

base / critical_closure_internal_ios.mm [blame]

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#import <UIKit/UIKit.h>

#include <string_view>

#include "base/critical_closure.h"

namespace base::internal {

ImmediateCriticalClosure::ImmediateCriticalClosure(std::string_view task_name,
                                                   OnceClosure closure)
    : critical_action_(task_name), closure_(std::move(closure)) {
  CHECK(!closure_.is_null());
}

ImmediateCriticalClosure::~ImmediateCriticalClosure() = default;

void ImmediateCriticalClosure::Run() {
  CHECK(!closure_.is_null());
  std::move(closure_).Run();
}

PendingCriticalClosure::PendingCriticalClosure(std::string_view task_name,
                                               OnceClosure closure)
    : task_name_(task_name), closure_(std::move(closure)) {
  CHECK(!closure_.is_null());
}

PendingCriticalClosure::~PendingCriticalClosure() = default;

void PendingCriticalClosure::Run() {
  CHECK(!closure_.is_null());
  critical_action_.emplace(task_name_);
  std::move(closure_).Run();
}

}  // namespace base::internal