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

Unified Diff: third_party/WebKit/Source/core/html/shadow/MediaControlElementTypes.h

Issue 2795783004: Move core MediaControls implementation to modules/media_controls/. (Closed)
Patch Set: rebase 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/core/html/shadow/MediaControlElementTypes.h
diff --git a/third_party/WebKit/Source/core/html/shadow/MediaControlElementTypes.h b/third_party/WebKit/Source/core/html/shadow/MediaControlElementTypes.h
index 07db785afc6124675f7f380d0926a6ad2152b273..0a0d1a0bca2d4103423f003d3534c31a5f4f7856 100644
--- a/third_party/WebKit/Source/core/html/shadow/MediaControlElementTypes.h
+++ b/third_party/WebKit/Source/core/html/shadow/MediaControlElementTypes.h
@@ -79,7 +79,7 @@ CORE_EXPORT MediaControlElementType mediaControlElementType(const Node*);
// TODO(mustaq): The Media control elements that use MouseEvents should be
// ported to use PointerEvents instead.
-class MediaControlElement : public GarbageCollectedMixin {
+class CORE_EXPORT MediaControlElement : public GarbageCollectedMixin {
public:
// These hold the state about whether this control should be shown if
// space permits. These will also show / hide as needed.
@@ -151,8 +151,8 @@ class MediaControlElement : public GarbageCollectedMixin {
// ----------------------------
-class MediaControlDivElement : public HTMLDivElement,
- public MediaControlElement {
+class CORE_EXPORT MediaControlDivElement : public HTMLDivElement,
+ public MediaControlElement {
USING_GARBAGE_COLLECTED_MIXIN(MediaControlDivElement);
public:
@@ -167,8 +167,8 @@ class MediaControlDivElement : public HTMLDivElement,
// ----------------------------
-class MediaControlInputElement : public HTMLInputElement,
- public MediaControlElement {
+class CORE_EXPORT MediaControlInputElement : public HTMLInputElement,
+ public MediaControlElement {
USING_GARBAGE_COLLECTED_MIXIN(MediaControlInputElement);
public:
@@ -193,7 +193,8 @@ class MediaControlInputElement : public HTMLInputElement,
// ----------------------------
-class MediaControlTimeDisplayElement : public MediaControlDivElement {
+class CORE_EXPORT MediaControlTimeDisplayElement
+ : public MediaControlDivElement {
public:
void setCurrentValue(double);
double currentValue() const { return m_currentValue; }

Powered by Google App Engine
This is Rietveld 408576698