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

Unified Diff: device/gamepad/gamepad_monitor.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 | « device/gamepad/gamepad_monitor.h ('k') | device/geolocation/geolocation_service_context.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/gamepad/gamepad_monitor.cc
diff --git a/device/gamepad/gamepad_monitor.cc b/device/gamepad/gamepad_monitor.cc
index c385d18f5e02074c1746e152f98609fa1021c9e3..0f85717716e38b0fb96f4bc9a08ad5a4668bb88c 100644
--- a/device/gamepad/gamepad_monitor.cc
+++ b/device/gamepad/gamepad_monitor.cc
@@ -20,7 +20,8 @@ GamepadMonitor::~GamepadMonitor() {
}
// static
-void GamepadMonitor::Create(mojom::GamepadMonitorRequest request) {
+void GamepadMonitor::Create(const service_manager::BindSourceInfo& source_info,
+ mojom::GamepadMonitorRequest request) {
mojo::MakeStrongBinding(base::MakeUnique<GamepadMonitor>(),
std::move(request));
}
« no previous file with comments | « device/gamepad/gamepad_monitor.h ('k') | device/geolocation/geolocation_service_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698