// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "content/common/content_export.h" #include "ui/display/types/display_constants.h" #ifndef CONTENT_PUBLIC_BROWSER_FULLSCREEN_TYPES_H_ #define CONTENT_PUBLIC_BROWSER_FULLSCREEN_TYPES_H_ namespace content { // Content fullscreen modes pertinent to windows that host web content. enum class FullscreenMode { … }; // Fullscreen state information for windows that host web content. struct CONTENT_EXPORT FullscreenState { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_FULLSCREEN_TYPES_H_