chromium/third_party/blink/renderer/core/html/media/media_controls.h

// Copyright 2017 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_HTML_MEDIA_MEDIA_CONTROLS_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_HTML_MEDIA_MEDIA_CONTROLS_H_

#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/heap/member.h"

namespace blink {

class HTMLDivElement;
class HTMLMediaElement;
class LayoutObject;

// The CSS class names for the different sizing thresholds.
const char kMediaControlsSizingSmallCSSClass[] =;
const char kMediaControlsSizingMediumCSSClass[] =;
const char kMediaControlsSizingLargeCSSClass[] =;

// The different media controls sizing classes.
enum class MediaControlsSizingClass {};

// MediaControls is an interface to abstract the HTMLMediaElement controls. The
// implementation will be used using a Factory (see below).
class CORE_EXPORT MediaControls : public GarbageCollectedMixin {};

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_CORE_HTML_MEDIA_MEDIA_CONTROLS_H_