| Index: services/video_capture/video_capture_service.cc
|
| diff --git a/services/video_capture/video_capture_service.cc b/services/video_capture/video_capture_service.cc
|
| index b38914daea6d03b4d3d9b61c80eaf0eb3b1494f8..f23bde1dcec4933fd8cde6ad0682a2d09bef8e56 100644
|
| --- a/services/video_capture/video_capture_service.cc
|
| +++ b/services/video_capture/video_capture_service.cc
|
| @@ -28,14 +28,16 @@ VideoCaptureService::VideoCaptureService() = default;
|
|
|
| VideoCaptureService::~VideoCaptureService() = default;
|
|
|
| -bool VideoCaptureService::OnConnect(const shell::Identity& remote_identity,
|
| - shell::InterfaceRegistry* registry) {
|
| +bool VideoCaptureService::OnConnect(
|
| + const service_manager::Identity& remote_identity,
|
| + service_manager::InterfaceRegistry* registry) {
|
| registry->AddInterface<mojom::VideoCaptureService>(this);
|
| return true;
|
| }
|
|
|
| -void VideoCaptureService::Create(const shell::Identity& remote_identity,
|
| - mojom::VideoCaptureServiceRequest request) {
|
| +void VideoCaptureService::Create(
|
| + const service_manager::Identity& remote_identity,
|
| + mojom::VideoCaptureServiceRequest request) {
|
| service_bindings_.AddBinding(this, std::move(request));
|
| }
|
|
|
|
|