chromium/third_party/blink/renderer/platform/scheduler/common/post_cancellable_task_unittest.cc

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

#include "third_party/blink/renderer/platform/scheduler/public/post_cancellable_task.h"

#include "base/memory/weak_ptr.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/platform/scheduler/test/fake_task_runner.h"
#include "third_party/blink/renderer/platform/wtf/allocator/allocator.h"
#include "third_party/blink/renderer/platform/wtf/functional.h"

namespace blink {
namespace {

void Increment(int* x) {}

void GetIsActive(bool* is_active, TaskHandle* handle) {}

class CancellationTestHelper {};

}  // namespace

TEST(WebTaskRunnerTest, PostCancellableTaskTest) {}

TEST(WebTaskRunnerTest, CancellationCheckerTest) {}

}  // namespace blink