| 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 a2dccecc890c292e22997b9ce54da6d2f1939f08..cc8a9a8d40b8eae237cc40a10e7863144ca8fb11 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLMediaElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLMediaElement.h
|
| @@ -27,6 +27,7 @@
|
| #ifndef HTMLMediaElement_h
|
| #define HTMLMediaElement_h
|
|
|
| +#include <memory>
|
| #include "bindings/core/v8/ActiveScriptWrappable.h"
|
| #include "bindings/core/v8/ScriptPromise.h"
|
| #include "bindings/core/v8/TraceWrapperMember.h"
|
| @@ -35,6 +36,7 @@
|
| #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"
|
| @@ -42,7 +44,6 @@
|
| #include "platform/network/mime/MIMETypeRegistry.h"
|
| #include "public/platform/WebAudioSourceProviderClient.h"
|
| #include "public/platform/WebMediaPlayerClient.h"
|
| -#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -202,6 +203,8 @@ class CORE_EXPORT HTMLMediaElement
|
| // controls
|
| bool shouldShowControls(
|
| const RecordMetricsBehavior = RecordMetricsBehavior::DoNotRecord) const;
|
| + HTMLMediaElementControlsList* controlsList() const;
|
| + void controlsListValueWasSet();
|
| double volume() const;
|
| void setVolume(double, ExceptionState& = ASSERT_NO_EXCEPTION);
|
| bool muted() const;
|
| @@ -748,6 +751,7 @@ class CORE_EXPORT HTMLMediaElement
|
| IntRect m_currentIntersectRect;
|
|
|
| Member<MediaControls> m_mediaControls;
|
| + Member<HTMLMediaElementControlsList> m_controlsList;
|
|
|
| static URLRegistry* s_mediaStreamRegistry;
|
| };
|
|
|