| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "modules/webaudio/StereoPannerNode.h" | 5 #include "modules/webaudio/StereoPannerNode.h" |
| 6 | |
| 7 #if ENABLE(WEB_AUDIO) | |
| 8 #include "core/testing/DummyPageHolder.h" | 6 #include "core/testing/DummyPageHolder.h" |
| 9 #include "modules/webaudio/OfflineAudioContext.h" | 7 #include "modules/webaudio/OfflineAudioContext.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
| 11 | 9 |
| 12 namespace blink { | 10 namespace blink { |
| 13 | 11 |
| 14 TEST(StereoPannerNodeTest, StereoPannerLifetime) | 12 TEST(StereoPannerNodeTest, StereoPannerLifetime) |
| 15 { | 13 { |
| 16 OwnPtr<DummyPageHolder> page = DummyPageHolder::create(); | 14 OwnPtr<DummyPageHolder> page = DummyPageHolder::create(); |
| 17 OfflineAudioContext* context = OfflineAudioContext::create(&page->document()
, 2, 1, 48000, ASSERT_NO_EXCEPTION); | 15 OfflineAudioContext* context = OfflineAudioContext::create(&page->document()
, 2, 1, 48000, ASSERT_NO_EXCEPTION); |
| 18 StereoPannerNode* node = context->createStereoPanner(ASSERT_NO_EXCEPTION); | 16 StereoPannerNode* node = context->createStereoPanner(ASSERT_NO_EXCEPTION); |
| 19 StereoPannerHandler& handler = static_cast<StereoPannerHandler&>(node->handl
er()); | 17 StereoPannerHandler& handler = static_cast<StereoPannerHandler&>(node->handl
er()); |
| 20 EXPECT_TRUE(handler.m_stereoPanner); | 18 EXPECT_TRUE(handler.m_stereoPanner); |
| 21 AbstractAudioContext::AutoLocker locker(context); | 19 AbstractAudioContext::AutoLocker locker(context); |
| 22 handler.dispose(); | 20 handler.dispose(); |
| 23 // m_stereoPanner should live after dispose() because an audio thread is | 21 // m_stereoPanner should live after dispose() because an audio thread is |
| 24 // using it. | 22 // using it. |
| 25 EXPECT_TRUE(handler.m_stereoPanner); | 23 EXPECT_TRUE(handler.m_stereoPanner); |
| 26 } | 24 } |
| 27 | 25 |
| 28 } // namespace blink | 26 } // namespace blink |
| 29 | 27 |
| 30 #endif // ENABLE(WEB_AUDIO) | |
| OLD | NEW |