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/media/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" |
11 | 11 |
12 #include "testing/gmock/include/gmock/gmock.h" | 12 #include "testing/gmock/include/gmock/gmock.h" |
13 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
14 | 14 |
15 namespace blink { | 15 namespace blink { |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 EXPECT_CALL(umaHelper(), handleContextDestroyed()); | 70 EXPECT_CALL(umaHelper(), handleContextDestroyed()); |
71 | 71 |
72 mediaElement().setMuted(true); | 72 mediaElement().setMuted(true); |
73 umaHelper().onAutoplayInitiated(AutoplaySource::Method); | 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 |