| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |