Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1126)

Unified Diff: third_party/WebKit/Source/modules/media_controls/elements/MediaControlPlayButtonElement.h

Issue 2820633003: Media Controls: move simple buttons to modules/. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698