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

Unified Diff: device/gamepad/gamepad_monitor.cc

Issue 2808093006: [Device Service] Move Gamepad Blink headers to be part of the Gamepad client library (Closed)
Patch Set: rebase and address comments 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/gamepad/gamepad_pad_state_provider.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 93990d3711a8add03f127da3b53eb3ed60ff85ae..c385d18f5e02074c1746e152f98609fa1021c9e3 100644
--- a/device/gamepad/gamepad_monitor.cc
+++ b/device/gamepad/gamepad_monitor.cc
@@ -26,13 +26,13 @@ void GamepadMonitor::Create(mojom::GamepadMonitorRequest request) {
}
void GamepadMonitor::OnGamepadConnected(unsigned index,
- const blink::WebGamepad& gamepad) {
+ const Gamepad& gamepad) {
if (gamepad_observer_)
gamepad_observer_->GamepadConnected(index, gamepad);
}
void GamepadMonitor::OnGamepadDisconnected(unsigned index,
- const blink::WebGamepad& gamepad) {
+ const Gamepad& gamepad) {
if (gamepad_observer_)
gamepad_observer_->GamepadDisconnected(index, gamepad);
}
« no previous file with comments | « device/gamepad/gamepad_monitor.h ('k') | device/gamepad/gamepad_pad_state_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698