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

Unified Diff: third_party/WebKit/Source/core/html/HTMLMediaElement.h

Issue 2108403003: Measure whether muted videos that started playing with play() become visible at some point (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clean up in a unload event listener Created 4 years, 5 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/HTMLMediaElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLMediaElement.h b/third_party/WebKit/Source/core/html/HTMLMediaElement.h
index 9863e39251d31afb640160653852f921101638df..f488f66e4074156da1c36a96c84e2f99d4642fb6 100644
--- a/third_party/WebKit/Source/core/html/HTMLMediaElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLMediaElement.h
@@ -46,6 +46,7 @@ namespace blink {
class AudioSourceProviderClient;
class AudioTrackList;
+class AutoplayUmaHelper;
class ContentType;
class CueTimeline;
class ElementVisibilityObserver;
@@ -298,13 +299,6 @@ protected:
void recordAutoplayMetric(AutoplayMetrics);
private:
- // These values are used for histograms. Do not reorder.
- enum AutoplayUnmuteActionStatus {
- AutoplayUnmuteActionFailure = 0,
- AutoplayUnmuteActionSuccess = 1,
- AutoplayUnmuteActionMax
- };
-
void resetMediaPlayerAndMediaSource();
bool alwaysCreateUserAgentShadowRoot() const final { return true; }
@@ -499,9 +493,6 @@ private:
EnumerationHistogram& showControlsHistogram() const;
- void recordAutoplaySourceMetric(int source);
- void recordAutoplayUnmuteStatus(AutoplayUnmuteActionStatus);
-
void onVisibilityChangedForAutoplay(bool isVisible);
UnthrottledTimer<HTMLMediaElement> m_loadTimer;
@@ -678,6 +669,7 @@ private:
Member<AutoplayExperimentHelper::Client> m_autoplayHelperClient;
Member<AutoplayExperimentHelper> m_autoplayHelper;
+ Member<AutoplayUmaHelper> m_autoplayUmaHelper;
WebRemotePlaybackClient* m_remotePlaybackClient;
« no previous file with comments | « third_party/WebKit/Source/core/html/AutoplayUmaHelper.cpp ('k') | third_party/WebKit/Source/core/html/HTMLMediaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698