Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef SERVICES_VIDEO_CAPTURE_FAKE_DEVICE_DESCRIPTOR_VIDEO_CAPTURE_SERVICE_TEST _H_ | |
| 6 #define SERVICES_VIDEO_CAPTURE_FAKE_DEVICE_DESCRIPTOR_VIDEO_CAPTURE_SERVICE_TEST _H_ | |
| 7 | |
| 8 #include "services/video_capture/video_capture_service_test.h" | |
| 9 | |
| 10 namespace video_capture { | |
| 11 | |
| 12 // Test fixture that obtains the descriptor of the fake device by enumerating | |
| 13 // the devices of the fake device factory. | |
| 14 class FakeDeviceDescriptorVideoCaptureServiceTest | |
| 15 : public VideoCaptureServiceTest { | |
|
mcasas
2016/09/02 16:15:14
The class hierarchy makes sense, but as commented
chfremer
2016/09/02 17:44:31
Done.
| |
| 16 public: | |
| 17 FakeDeviceDescriptorVideoCaptureServiceTest(); | |
| 18 ~FakeDeviceDescriptorVideoCaptureServiceTest() override; | |
| 19 | |
| 20 void SetUp() override; | |
| 21 | |
| 22 protected: | |
| 23 mojom::VideoCaptureDeviceDescriptorPtr fake_device_descriptor_; | |
| 24 }; | |
| 25 | |
| 26 } // namespace video_capture | |
| 27 | |
| 28 #endif // SERVICES_VIDEO_CAPTURE_FAKE_DEVICE_DESCRIPTOR_VIDEO_CAPTURE_SERVICE_T EST_H_ | |
| OLD | NEW |