| Index: content/browser/renderer_host/media/video_capture_controller_unittest.cc
|
| ===================================================================
|
| --- content/browser/renderer_host/media/video_capture_controller_unittest.cc (revision 164646)
|
| +++ content/browser/renderer_host/media/video_capture_controller_unittest.cc (working copy)
|
| @@ -26,9 +26,9 @@
|
| using ::testing::AtLeast;
|
| using ::testing::InSequence;
|
| using ::testing::Return;
|
| -using content::BrowserThread;
|
| -using content::BrowserThreadImpl;
|
|
|
| +namespace content {
|
| +
|
| enum { kDeviceId = 1 };
|
|
|
| ACTION_P4(StopCapture, controller, controller_id, controller_handler,
|
| @@ -97,8 +97,7 @@
|
| base::ProcessHandle process_handle_;
|
| };
|
|
|
| -class MockVideoCaptureManager
|
| - : public media_stream::VideoCaptureManager {
|
| +class MockVideoCaptureManager : public VideoCaptureManager {
|
| public:
|
| MockVideoCaptureManager()
|
| : video_session_id_(kStartOpenSessionId) {}
|
| @@ -265,3 +264,5 @@
|
| controller_->StopCapture(controller_handler_->controller_id_,
|
| controller_handler_.get());
|
| }
|
| +
|
| +} // namespace content
|
|
|