// 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. #include "cc/base/unique_notifier.h" #include <utility> #include "base/functional/bind.h" #include "base/functional/callback_helpers.h" #include "base/location.h" #include "base/task/sequenced_task_runner.h" namespace cc { UniqueNotifier::UniqueNotifier(base::SequencedTaskRunner* task_runner, base::RepeatingClosure closure) : … { … } UniqueNotifier::~UniqueNotifier() = default; void UniqueNotifier::Cancel() { … } void UniqueNotifier::Schedule() { … } void UniqueNotifier::Notify() { … } } // namespace cc