OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <string> | 5 #include <string> |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/callback_helpers.h" | 8 #include "base/callback_helpers.h" |
9 #include "base/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
10 #include "base/run_loop.h" | 10 #include "base/run_loop.h" |
11 #include "content/browser/browser_thread_impl.h" | 11 #include "content/browser/browser_thread_impl.h" |
12 #include "content/browser/renderer_host/media/media_stream_dispatcher_host.h" | 12 #include "content/browser/renderer_host/media/media_stream_dispatcher_host.h" |
13 #include "content/browser/renderer_host/media/media_stream_manager.h" | 13 #include "content/browser/renderer_host/media/media_stream_manager.h" |
14 #include "content/browser/renderer_host/media/media_stream_ui_proxy.h" | 14 #include "content/browser/renderer_host/media/media_stream_ui_proxy.h" |
15 #include "content/browser/renderer_host/media/video_capture_manager.h" | 15 #include "content/browser/renderer_host/media/video_capture_manager.h" |
16 #include "content/common/media/media_stream_messages.h" | 16 #include "content/common/media/media_stream_messages.h" |
17 #include "content/common/media/media_stream_options.h" | 17 #include "content/common/media/media_stream_options.h" |
18 #include "content/public/test/mock_resource_context.h" | 18 #include "content/public/test/mock_resource_context.h" |
19 #include "content/public/test/test_browser_thread_bundle.h" | 19 #include "content/public/test/test_browser_thread_bundle.h" |
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 EXPECT_EQ(host_->NumberOfStreams(), 1u); | 332 EXPECT_EQ(host_->NumberOfStreams(), 1u); |
333 | 333 |
334 ASSERT_FALSE(close_callback.is_null()); | 334 ASSERT_FALSE(close_callback.is_null()); |
335 close_callback.Run(); | 335 close_callback.Run(); |
336 base::RunLoop().RunUntilIdle(); | 336 base::RunLoop().RunUntilIdle(); |
337 | 337 |
338 EXPECT_EQ(host_->NumberOfStreams(), 0u); | 338 EXPECT_EQ(host_->NumberOfStreams(), 0u); |
339 } | 339 } |
340 | 340 |
341 }; // namespace content | 341 }; // namespace content |
OLD | NEW |