Index: third_party/WebKit/Source/core/html/HTMLMediaElement.h |
diff --git a/third_party/WebKit/Source/core/html/HTMLMediaElement.h b/third_party/WebKit/Source/core/html/HTMLMediaElement.h |
index 9106f3403a258ec19ab3e9e268b8e0fda9548ac2..2bd2c77975194ae9e0914d7e2a0991d6e359151d 100644 |
--- a/third_party/WebKit/Source/core/html/HTMLMediaElement.h |
+++ b/third_party/WebKit/Source/core/html/HTMLMediaElement.h |
@@ -37,7 +37,6 @@ |
#include "core/dom/SuspendableObject.h" |
#include "core/events/GenericEventQueue.h" |
#include "core/html/HTMLElement.h" |
-#include "core/html/HTMLMediaElementControlsList.h" |
#include "core/html/track/TextTrack.h" |
#include "platform/Supplementable.h" |
#include "platform/WebTaskRunner.h" |
@@ -58,6 +57,7 @@ class ElementVisibilityObserver; |
class EnumerationHistogram; |
class Event; |
class ExceptionState; |
+class HTMLMediaElementControlsList; |
class HTMLSourceElement; |
class HTMLTrackElement; |
class KURL; |
@@ -204,7 +204,8 @@ class CORE_EXPORT HTMLMediaElement |
// controls |
bool shouldShowControls( |
const RecordMetricsBehavior = RecordMetricsBehavior::DoNotRecord) const; |
- HTMLMediaElementControlsList* controlsList() const; |
+ DOMTokenList* controlsList() const; |
foolip
2017/04/04 09:12:55
Why was this change needed? HTMLMediaElementContro
mlamouri (slow - plz ping)
2017/04/04 09:19:51
I removed the include and replaced it with a forwa
foolip
2017/04/04 09:24:36
Acknowledged.
|
+ HTMLMediaElementControlsList* controlsListInternal() const; |
void controlsListValueWasSet(); |
double volume() const; |
void setVolume(double, ExceptionState& = ASSERT_NO_EXCEPTION); |