| 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 9863e39251d31afb640160653852f921101638df..cd3615f7a7a8ac351e1237deb4570cb1d76dbd34 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLMediaElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLMediaElement.h
|
| @@ -44,8 +44,11 @@
|
|
|
| namespace blink {
|
|
|
| +enum class AutoplaySource;
|
| +
|
| class AudioSourceProviderClient;
|
| class AudioTrackList;
|
| +class AutoplayUmaHelper;
|
| class ContentType;
|
| class CueTimeline;
|
| class ElementVisibilityObserver;
|
| @@ -499,7 +502,7 @@ private:
|
|
|
| EnumerationHistogram& showControlsHistogram() const;
|
|
|
| - void recordAutoplaySourceMetric(int source);
|
| + void recordAutoplaySourceMetric(AutoplaySource);
|
| void recordAutoplayUnmuteStatus(AutoplayUnmuteActionStatus);
|
|
|
| void onVisibilityChangedForAutoplay(bool isVisible);
|
| @@ -678,6 +681,7 @@ private:
|
|
|
| Member<AutoplayExperimentHelper::Client> m_autoplayHelperClient;
|
| Member<AutoplayExperimentHelper> m_autoplayHelper;
|
| + Member<AutoplayUmaHelper> m_autoplayUmaHelper;
|
|
|
| WebRemotePlaybackClient* m_remotePlaybackClient;
|
|
|
|
|