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

Unified Diff: services/ui/service.cc

Issue 2851173004: Eliminate bind callback that doesn't take a BindSourceInfo parameter. (Closed)
Patch Set: . Created 3 years, 8 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/shape_detection/text_detection_impl_mac.mm ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/ui/service.cc
diff --git a/services/ui/service.cc b/services/ui/service.cc
index 8869dd40f4de800c24d5022626805d43e31f0af5..c3fbf99c7c15aad92f6971650e670b929d469f2c 100644
--- a/services/ui/service.cc
+++ b/services/ui/service.cc
@@ -414,7 +414,7 @@ void Service::BindWindowTreeHostFactoryRequest(
void Service::BindDiscardableSharedMemoryManagerRequest(
const service_manager::BindSourceInfo& source_info,
discardable_memory::mojom::DiscardableSharedMemoryManagerRequest request) {
- discardable_shared_memory_manager_->Bind(std::move(request));
+ discardable_shared_memory_manager_->Bind(source_info, std::move(request));
}
void Service::BindWindowServerTestRequest(
« no previous file with comments | « services/shape_detection/text_detection_impl_mac.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698