chromium/third_party/blink/renderer/core/layout/layout_view_transition_content.h

// 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.

#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_LAYOUT_VIEW_TRANSITION_CONTENT_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_LAYOUT_VIEW_TRANSITION_CONTENT_H_

#include "base/memory/scoped_refptr.h"
#include "cc/layers/view_transition_content_layer.h"
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/layout/layout_object.h"
#include "third_party/blink/renderer/core/layout/layout_replaced.h"
#include "third_party/blink/renderer/core/view_transition/view_transition_content_element.h"

namespace blink {

class CORE_EXPORT LayoutViewTransitionContent : public LayoutReplaced {};

template <>
struct DowncastTraits<LayoutViewTransitionContent> {};

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_LAYOUT_VIEW_TRANSITION_CONTENT_H_