// Copyright 2019 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/frame/embedded_content_view.h" #include "third_party/blink/renderer/core/layout/layout_embedded_content.h" #include "third_party/blink/renderer/core/layout/layout_view.h" namespace blink { void EmbeddedContentView::SetFrameRect(const gfx::Rect& frame_rect) { … } gfx::Point EmbeddedContentView::Location() const { … } void EmbeddedContentView::SetSelfVisible(bool visible) { … } void EmbeddedContentView::SetParentVisible(bool visible) { … } } // namespace blink