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

Unified Diff: third_party/WebKit/Source/core/html/media/HTMLMediaElementControlsList.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/media/HTMLMediaElementControlsList.h
diff --git a/third_party/WebKit/Source/core/html/media/HTMLMediaElementControlsList.h b/third_party/WebKit/Source/core/html/media/HTMLMediaElementControlsList.h
index 8b4d0d613525161c7489fd61231d2e5c6b5b106d..e638b3586c5d5ad3298246f6e123d40aa10c5e18 100644
--- a/third_party/WebKit/Source/core/html/media/HTMLMediaElementControlsList.h
+++ b/third_party/WebKit/Source/core/html/media/HTMLMediaElementControlsList.h
@@ -5,6 +5,7 @@
#ifndef HTMLMediaElementControlsList_h
#define HTMLMediaElementControlsList_h
+#include "core/CoreExport.h"
#include "core/dom/DOMTokenList.h"
#include "platform/heap/Handle.h"
@@ -26,9 +27,9 @@ class HTMLMediaElementControlsList final : public DOMTokenList,
DECLARE_VIRTUAL_TRACE();
// Whether the list dictates to hide a certain control.
- bool shouldHideDownload() const;
- bool shouldHideFullscreen() const;
- bool shouldHideRemotePlayback() const;
+ CORE_EXPORT bool shouldHideDownload() const;
+ CORE_EXPORT bool shouldHideFullscreen() const;
+ CORE_EXPORT bool shouldHideRemotePlayback() const;
private:
explicit HTMLMediaElementControlsList(HTMLMediaElement*);

Powered by Google App Engine
This is Rietveld 408576698