chromium/third_party/blink/renderer/core/execution_context/execution_context_lifecycle_observer.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/core/execution_context/execution_context_lifecycle_observer.h"

#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/frame/local_dom_window.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"

namespace blink {

ExecutionContextClient::ExecutionContextClient(
    ExecutionContext* execution_context)
    :{}

ExecutionContext* ExecutionContextClient::GetExecutionContext() const {}

LocalDOMWindow* ExecutionContextClient::DomWindow() const {}

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

ExecutionContextLifecycleObserver::ExecutionContextLifecycleObserver(
    ExecutionContext* execution_context,
    Type type)
    :{}

ExecutionContext* ExecutionContextLifecycleObserver::GetExecutionContext()
    const {}

void ExecutionContextLifecycleObserver::SetExecutionContext(
    ExecutionContext* execution_context) {}

LocalDOMWindow* ExecutionContextLifecycleObserver::DomWindow() const {}

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

}  // namespace blink