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

Side by Side Diff: third_party/WebKit/Source/core/html/AutoplayUmaHelperTest.cpp

Issue 2767093002: Fix AutoplayUmaHelper when autoplay is initiated from multiple sources (Closed)
Patch Set: fixed test Created 3 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "core/html/AutoplayUmaHelper.h" 5 #include "core/html/AutoplayUmaHelper.h"
6 6
7 #include "core/dom/Document.h" 7 #include "core/dom/Document.h"
8 #include "core/html/HTMLMediaElement.h" 8 #include "core/html/HTMLMediaElement.h"
9 #include "core/html/HTMLVideoElement.h" 9 #include "core/html/HTMLVideoElement.h"
10 #include "core/testing/DummyPageHolder.h" 10 #include "core/testing/DummyPageHolder.h"
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 void TearDown() override { m_umaHelper.clear(); } 63 void TearDown() override { m_umaHelper.clear(); }
64 64
65 std::unique_ptr<DummyPageHolder> m_pageHolder; 65 std::unique_ptr<DummyPageHolder> m_pageHolder;
66 Persistent<MockAutoplayUmaHelper> m_umaHelper; 66 Persistent<MockAutoplayUmaHelper> m_umaHelper;
67 }; 67 };
68 68
69 TEST_F(AutoplayUmaHelperTest, VisibilityChangeWhenUnload) { 69 TEST_F(AutoplayUmaHelperTest, VisibilityChangeWhenUnload) {
70 EXPECT_CALL(umaHelper(), handleContextDestroyed()); 70 EXPECT_CALL(umaHelper(), handleContextDestroyed());
71 71
72 mediaElement().setMuted(true); 72 mediaElement().setMuted(true);
73 umaHelper().onAutoplayInitiated(AutoplaySource::Attribute); 73 umaHelper().onAutoplayInitiated(AutoplaySource::Method);
74 umaHelper().handlePlayingEvent(); 74 umaHelper().handlePlayingEvent();
75 pageHolder().reset(); 75 pageHolder().reset();
76 ::testing::Mock::VerifyAndClear(&umaHelper()); 76 ::testing::Mock::VerifyAndClear(&umaHelper());
77 } 77 }
78 78
79 } // namespace blink 79 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/AutoplayUmaHelper.cpp ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698