Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(146)

Side by Side Diff: services/video_capture/video_capture_service.h

Issue 2419723002: Move services/shell to services/service_manager (Closed)
Patch Set: rebase Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 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 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 #ifndef SERVICES_VIDEO_CAPTURE_VIDEO_CAPTURE_SERVICE_H_ 5 #ifndef SERVICES_VIDEO_CAPTURE_VIDEO_CAPTURE_SERVICE_H_
6 #define SERVICES_VIDEO_CAPTURE_VIDEO_CAPTURE_SERVICE_H_ 6 #define SERVICES_VIDEO_CAPTURE_VIDEO_CAPTURE_SERVICE_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "mojo/public/cpp/bindings/binding_set.h" 10 #include "mojo/public/cpp/bindings/binding_set.h"
11 #include "services/shell/public/cpp/service.h" 11 #include "services/service_manager/public/cpp/service.h"
12 #include "services/video_capture/public/interfaces/video_capture_service.mojom.h " 12 #include "services/video_capture/public/interfaces/video_capture_service.mojom.h "
13 13
14 namespace video_capture { 14 namespace video_capture {
15 15
16 class VideoCaptureDeviceFactoryImpl; 16 class VideoCaptureDeviceFactoryImpl;
17 class FakeVideoCaptureDeviceFactoryConfiguratorImpl; 17 class FakeVideoCaptureDeviceFactoryConfiguratorImpl;
18 18
19 // Implementation of mojom::VideoCaptureService as a Mojo Shell Service. 19 // Implementation of mojom::VideoCaptureService as a Mojo Shell Service.
20 class VideoCaptureService 20 class VideoCaptureService
21 : public shell::Service, 21 : public shell::Service,
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 mojo::BindingSet<mojom::VideoCaptureDeviceFactory> fake_factory_bindings_; 55 mojo::BindingSet<mojom::VideoCaptureDeviceFactory> fake_factory_bindings_;
56 mojo::BindingSet<mojom::VideoCaptureDeviceFactory> mock_factory_bindings_; 56 mojo::BindingSet<mojom::VideoCaptureDeviceFactory> mock_factory_bindings_;
57 std::unique_ptr<VideoCaptureDeviceFactoryImpl> device_factory_; 57 std::unique_ptr<VideoCaptureDeviceFactoryImpl> device_factory_;
58 std::unique_ptr<VideoCaptureDeviceFactoryImpl> fake_device_factory_; 58 std::unique_ptr<VideoCaptureDeviceFactoryImpl> fake_device_factory_;
59 std::unique_ptr<VideoCaptureDeviceFactoryImpl> mock_device_factory_; 59 std::unique_ptr<VideoCaptureDeviceFactoryImpl> mock_device_factory_;
60 }; 60 };
61 61
62 } // namespace video_capture 62 } // namespace video_capture
63 63
64 #endif // SERVICES_VIDEO_CAPTURE_VIDEO_CAPTURE_SERVICE_H_ 64 #endif // SERVICES_VIDEO_CAPTURE_VIDEO_CAPTURE_SERVICE_H_
OLDNEW
« no previous file with comments | « services/video_capture/service_main.cc ('k') | services/video_capture/video_capture_service_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698