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

Side by Side Diff: components/arc/test/fake_bluetooth_instance.cc

Issue 2598963005: Include-what-you-use for WrapUnique/MakeUnique. (Closed)
Patch Set: restore order of includes in x11_topmost_window_finder_interactive_uitest.cc Created 3 years, 12 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/memory/ptr_util.h"
5 #include "components/arc/test/fake_bluetooth_instance.h" 6 #include "components/arc/test/fake_bluetooth_instance.h"
6 7
7 #include <utility> 8 #include <utility>
8 9
9 namespace arc { 10 namespace arc {
10 11
11 FakeBluetoothInstance::FakeBluetoothInstance() = default; 12 FakeBluetoothInstance::FakeBluetoothInstance() = default;
12 FakeBluetoothInstance::~FakeBluetoothInstance() = default; 13 FakeBluetoothInstance::~FakeBluetoothInstance() = default;
13 14
14 FakeBluetoothInstance::GattDBResult::GattDBResult( 15 FakeBluetoothInstance::GattDBResult::GattDBResult(
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 const std::vector<uint8_t>& value, 113 const std::vector<uint8_t>& value,
113 const RequestGattWriteCallback& callback) {} 114 const RequestGattWriteCallback& callback) {}
114 115
115 void FakeBluetoothInstance::OnGetSdpRecords( 116 void FakeBluetoothInstance::OnGetSdpRecords(
116 mojom::BluetoothStatus status, 117 mojom::BluetoothStatus status,
117 mojom::BluetoothAddressPtr remove_addr, 118 mojom::BluetoothAddressPtr remove_addr,
118 const device::BluetoothUUID& target_uuid, 119 const device::BluetoothUUID& target_uuid,
119 std::vector<mojom::BluetoothSdpRecordPtr> records) {} 120 std::vector<mojom::BluetoothSdpRecordPtr> records) {}
120 121
121 } // namespace arc 122 } // namespace arc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698