// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_PUBLIC_RENDERER_RENDER_FRAME_MEDIA_PLAYBACK_OPTIONS_H_ #define CONTENT_PUBLIC_RENDERER_RENDER_FRAME_MEDIA_PLAYBACK_OPTIONS_H_ #include "content/common/content_export.h" #include "content/public/common/media_playback_renderer_type.mojom.h" namespace content { // Default value for is_background_suspend_enabled is determined statically in // Chromium, but some content embedders (e.g. Cast) may need to change it at // runtime. CONTENT_EXPORT extern const bool kIsBackgroundMediaSuspendEnabled; struct RenderFrameMediaPlaybackOptions { … }; } // namespace content #endif // CONTENT_PUBLIC_RENDERER_RENDER_FRAME_MEDIA_PLAYBACK_OPTIONS_H_