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

Unified Diff: device/vr/test/fake_vr_service_client.cc

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 | « device/gamepad/xbox_data_fetcher_mac.mm ('k') | device/vr/vr_device.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/vr/test/fake_vr_service_client.cc
diff --git a/device/vr/test/fake_vr_service_client.cc b/device/vr/test/fake_vr_service_client.cc
index 9fd63f7fd82604d9a4bc623565c3b29981f2025e..075ea5e6d571d99c80d42c6b766f67771e91b94d 100644
--- a/device/vr/test/fake_vr_service_client.cc
+++ b/device/vr/test/fake_vr_service_client.cc
@@ -17,7 +17,7 @@ void FakeVRServiceClient::OnDisplayConnected(
mojom::VRDisplayClientRequest request,
mojom::VRDisplayInfoPtr displayInfo) {
displays_.push_back(std::move(displayInfo));
- auto display_client = new FakeVRDisplayImplClient(std::move(request));
+ auto* display_client = new FakeVRDisplayImplClient(std::move(request));
display_client->SetServiceClient(this);
display_clients_.push_back(display_client);
« no previous file with comments | « device/gamepad/xbox_data_fetcher_mac.mm ('k') | device/vr/vr_device.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698