chromium/third_party/blink/renderer/platform/heap/test/persistent_test.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/heap/persistent.h"

#include <memory>
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/platform/heap/cross_thread_persistent.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/heap/heap_test_utilities.h"
#include "third_party/blink/renderer/platform/wtf/cross_thread_functional.h"
#include "third_party/blink/renderer/platform/wtf/functional.h"

namespace blink {

class PersistentTest : public TestSupportingGC {};

namespace {

class Receiver : public GarbageCollected<Receiver> {};

TEST_F(PersistentTest, BindCancellation) {}

TEST_F(PersistentTest, CrossThreadBindCancellation) {}

}  // namespace
}  // namespace blink