| 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 <map> | 5 #include <map> |
| 6 #include <string> | 6 #include <string> |
| 7 | 7 |
| 8 #include "base/bind.h" | 8 #include "base/bind.h" |
| 9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/message_loop.h" | 11 #include "base/message_loop.h" |
| 12 #include "base/process_util.h" | 12 #include "base/process_util.h" |
| 13 #include "base/stl_util.h" | 13 #include "base/stl_util.h" |
| 14 #include "base/stringprintf.h" | 14 #include "base/stringprintf.h" |
| 15 #include "content/browser/browser_thread_impl.h" | 15 #include "content/browser/browser_thread_impl.h" |
| 16 #include "content/browser/mock_resource_context.h" | 16 #include "content/browser/mock_resource_context.h" |
| 17 #include "content/browser/renderer_host/media/media_stream_manager.h" | 17 #include "content/browser/renderer_host/media/media_stream_manager.h" |
| 18 #include "content/browser/renderer_host/media/video_capture_host.h" | 18 #include "content/browser/renderer_host/media/video_capture_host.h" |
| 19 #include "content/browser/renderer_host/media/video_capture_manager.h" | 19 #include "content/browser/renderer_host/media/video_capture_manager.h" |
| 20 #include "content/browser/resource_context.h" | |
| 21 #include "content/common/media/video_capture_messages.h" | 20 #include "content/common/media/video_capture_messages.h" |
| 22 #include "media/audio/audio_manager.h" | 21 #include "media/audio/audio_manager.h" |
| 23 #include "media/video/capture/video_capture_types.h" | 22 #include "media/video/capture/video_capture_types.h" |
| 24 | |
| 25 #include "testing/gmock/include/gmock/gmock.h" | 23 #include "testing/gmock/include/gmock/gmock.h" |
| 26 #include "testing/gtest/include/gtest/gtest.h" | 24 #include "testing/gtest/include/gtest/gtest.h" |
| 27 | 25 |
| 28 using ::testing::_; | 26 using ::testing::_; |
| 29 using ::testing::AtLeast; | 27 using ::testing::AtLeast; |
| 30 using ::testing::AnyNumber; | 28 using ::testing::AnyNumber; |
| 31 using ::testing::DoAll; | 29 using ::testing::DoAll; |
| 32 using ::testing::InSequence; | 30 using ::testing::InSequence; |
| 33 using ::testing::Mock; | 31 using ::testing::Mock; |
| 34 using ::testing::Return; | 32 using ::testing::Return; |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 } | 404 } |
| 407 | 405 |
| 408 #ifdef DUMP_VIDEO | 406 #ifdef DUMP_VIDEO |
| 409 TEST_F(VideoCaptureHostTest, CaptureAndDumpVideoVga) { | 407 TEST_F(VideoCaptureHostTest, CaptureAndDumpVideoVga) { |
| 410 CaptureAndDumpVideo(640, 480, 30); | 408 CaptureAndDumpVideo(640, 480, 30); |
| 411 } | 409 } |
| 412 TEST_F(VideoCaptureHostTest, CaptureAndDump720P) { | 410 TEST_F(VideoCaptureHostTest, CaptureAndDump720P) { |
| 413 CaptureAndDumpVideo(1280, 720, 30); | 411 CaptureAndDumpVideo(1280, 720, 30); |
| 414 } | 412 } |
| 415 #endif | 413 #endif |
| OLD | NEW |