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

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

#include "third_party/blink/renderer/core/html/media/media_controls.h"

#include "third_party/blink/renderer/core/html/media/html_media_element.h"

namespace blink {

namespace {

// The sizing class thresholds in pixels.
constexpr int kMediaControlsSizingMediumThreshold =;
constexpr int kMediaControlsSizingLargeThreshold =;

}  // namespace

// static
MediaControlsSizingClass MediaControls::GetSizingClass(int width) {}

// static
AtomicString MediaControls::GetSizingCSSClass(
    MediaControlsSizingClass sizing_class) {}

MediaControls::MediaControls(HTMLMediaElement& media_element)
    :{}

HTMLMediaElement& MediaControls::MediaElement() const {}

void MediaControls::Trace(Visitor* visitor) const {}

}  // namespace blink