| Index: services/video_capture/test/service_unittest.cc | 
| diff --git a/services/video_capture/test/service_unittest.cc b/services/video_capture/test/service_unittest.cc | 
| index 8b4b4bf3c7b7bf873e6bca6a490f9d3af9da358a..bc745002a9d08bb1fe81b382f5a923e02b5ed586 100644 | 
| --- a/services/video_capture/test/service_unittest.cc | 
| +++ b/services/video_capture/test/service_unittest.cc | 
| @@ -21,7 +21,7 @@ | 
|  | 
| // Tests that an answer arrives from the service when calling | 
| // GetDeviceInfos(). | 
| -TEST_F(VideoCaptureServiceTest, GetDeviceInfosCallbackArrives) { | 
| +TEST_F(VideoCaptureServiceTest, DISABLED_GetDeviceInfosCallbackArrives) { | 
| base::RunLoop wait_loop; | 
| EXPECT_CALL(device_info_receiver_, Run(_)) | 
| .Times(Exactly(1)) | 
| @@ -31,7 +31,7 @@ | 
| wait_loop.Run(); | 
| } | 
|  | 
| -TEST_F(VideoCaptureServiceTest, FakeDeviceFactoryEnumeratesOneDevice) { | 
| +TEST_F(VideoCaptureServiceTest, DISABLED_FakeDeviceFactoryEnumeratesOneDevice) { | 
| base::RunLoop wait_loop; | 
| size_t num_devices_enumerated = 0; | 
| EXPECT_CALL(device_info_receiver_, Run(_)) | 
| @@ -50,7 +50,8 @@ | 
|  | 
| // Tests that VideoCaptureDeviceFactory::CreateDeviceProxy() returns an error | 
| // code when trying to create a device for an invalid descriptor. | 
| -TEST_F(VideoCaptureServiceTest, ErrorCodeOnCreateDeviceForInvalidDescriptor) { | 
| +TEST_F(VideoCaptureServiceTest, | 
| +       DISABLED_ErrorCodeOnCreateDeviceForInvalidDescriptor) { | 
| const std::string invalid_device_id = "invalid"; | 
| base::RunLoop wait_loop; | 
| mojom::DevicePtr fake_device_proxy; | 
| @@ -60,7 +61,6 @@ | 
| Run(mojom::DeviceAccessResultCode::ERROR_DEVICE_NOT_FOUND)) | 
| .Times(1) | 
| .WillOnce(InvokeWithoutArgs([&wait_loop]() { wait_loop.Quit(); })); | 
| -  factory_->GetDeviceInfos(device_info_receiver_.Get()); | 
| factory_->CreateDevice(invalid_device_id, | 
| mojo::MakeRequest(&fake_device_proxy), | 
| create_device_proxy_callback.Get()); | 
|  |