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

// Copyright 2020 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_observer.h"

#include "third_party/blink/renderer/platform/context_lifecycle_notifier.h"

namespace blink {

ContextLifecycleObserver::~ContextLifecycleObserver() {}

void ContextLifecycleObserver::SetContextLifecycleNotifier(
    ContextLifecycleNotifier* notifier) {}

void ContextLifecycleObserver::NotifyContextDestroyed() {}

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

}  // namespace blink