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

Unified Diff: services/video_capture/video_capture_service.cc

Issue 2420253002: Rename shell namespace to service_manager (Closed)
Patch Set: . 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/video_capture/video_capture_service.h ('k') | services/video_capture/video_capture_service_test.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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));
}
« no previous file with comments | « services/video_capture/video_capture_service.h ('k') | services/video_capture/video_capture_service_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698