| Index: third_party/WebKit/Source/modules/media_controls/elements/MediaControlCurrentTimeDisplayElement.cpp
|
| diff --git a/third_party/WebKit/Source/modules/media_controls/elements/MediaControlCurrentTimeDisplayElement.cpp b/third_party/WebKit/Source/modules/media_controls/elements/MediaControlCurrentTimeDisplayElement.cpp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2c2c491f30df8cdf611f9b5c50d0ff5611ba2440
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/modules/media_controls/elements/MediaControlCurrentTimeDisplayElement.cpp
|
| @@ -0,0 +1,18 @@
|
| +// Copyright 2017 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "modules/media_controls/elements/MediaControlCurrentTimeDisplayElement.h"
|
| +
|
| +#include "modules/media_controls/MediaControlsImpl.h"
|
| +
|
| +namespace blink {
|
| +
|
| +MediaControlCurrentTimeDisplayElement::MediaControlCurrentTimeDisplayElement(
|
| + MediaControlsImpl& media_controls)
|
| + : MediaControlTimeDisplayElement(media_controls, kMediaCurrentTimeDisplay) {
|
| + SetShadowPseudoId(
|
| + AtomicString("-webkit-media-controls-current-time-display"));
|
| +}
|
| +
|
| +} // namespace blink
|
|
|