| Index: third_party/WebKit/Source/modules/media_controls/elements/MediaControlPlayButtonElement.h
|
| diff --git a/third_party/WebKit/Source/modules/media_controls/elements/MediaControlPlayButtonElement.h b/third_party/WebKit/Source/modules/media_controls/elements/MediaControlPlayButtonElement.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b9e75df3a389b420b8b09bca7cc213fcaf71288c
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/modules/media_controls/elements/MediaControlPlayButtonElement.h
|
| @@ -0,0 +1,31 @@
|
| +// 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.
|
| +
|
| +#ifndef MediaControlPlayButtonElement_h
|
| +#define MediaControlPlayButtonElement_h
|
| +
|
| +#include "core/html/shadow/MediaControlElementTypes.h"
|
| +
|
| +namespace blink {
|
| +
|
| +class Event;
|
| +class MediaControlsImpl;
|
| +
|
| +class MediaControlPlayButtonElement final : public MediaControlInputElement {
|
| + public:
|
| + explicit MediaControlPlayButtonElement(MediaControlsImpl&);
|
| +
|
| + // MediaControlInputElement overrides.
|
| + bool WillRespondToMouseClickEvents() override;
|
| + void UpdateDisplayType() override;
|
| + WebLocalizedString::Name GetOverflowStringName() override;
|
| + bool HasOverflowButton() override;
|
| +
|
| + private:
|
| + void DefaultEventHandler(Event*) override;
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // MediaControlPlayButtonElement_h
|
|
|