chromium/third_party/blink/renderer/platform/context_lifecycle_notifier.cc

// Copyright 2021 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/context_lifecycle_notifier.h"

#include "third_party/blink/renderer/platform/bindings/script_forbidden_scope.h"
#include "third_party/blink/renderer/platform/context_lifecycle_observer.h"

namespace blink {

ContextLifecycleNotifier::~ContextLifecycleNotifier() {}

bool ContextLifecycleNotifier::IsContextDestroyed() const {}

void ContextLifecycleNotifier::AddContextLifecycleObserver(
    ContextLifecycleObserver* observer) {}

void ContextLifecycleNotifier::RemoveContextLifecycleObserver(
    ContextLifecycleObserver* observer) {}

void ContextLifecycleNotifier::NotifyContextDestroyed() {}

void ContextLifecycleNotifier::Trace(Visitor* visitor) const {}

}  // namespace blink