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

Unified Diff: device/gamepad/xbox_data_fetcher_mac.mm

Issue 2721553004: Remove auto raw pointer deduction from non-linux specific code. (Closed)
Patch Set: rebase Created 3 years, 10 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 | « content/common/quarantine/quarantine_win_unittest.cc ('k') | device/vr/test/fake_vr_service_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/gamepad/xbox_data_fetcher_mac.mm
diff --git a/device/gamepad/xbox_data_fetcher_mac.mm b/device/gamepad/xbox_data_fetcher_mac.mm
index 0615de5686ee603f472416d3fd52807ddca47262..a6980740d3c28a2b94cab65d18fe45dcb69b86d7 100644
--- a/device/gamepad/xbox_data_fetcher_mac.mm
+++ b/device/gamepad/xbox_data_fetcher_mac.mm
@@ -624,7 +624,7 @@ GamepadSource XboxDataFetcher::source() {
void XboxDataFetcher::GetGamepadData(bool devices_changed_hint) {
// This just loops through all the connected pads and "pings" them to indicate
// that they're still active.
- for (const auto& controller : controllers_) {
+ for (auto* controller : controllers_) {
GetPadState(controller->location_id());
}
}
« no previous file with comments | « content/common/quarantine/quarantine_win_unittest.cc ('k') | device/vr/test/fake_vr_service_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698