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

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

Issue 2149713002: arc: bluetooth: Add SDP host side support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: arc: bluetooth: Add SDP host side support Created 4 years, 3 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
« no previous file with comments | « components/arc/test/fake_bluetooth_instance.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "components/arc/test/fake_bluetooth_instance.h" 5 #include "components/arc/test/fake_bluetooth_instance.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 namespace arc { 9 namespace arc {
10 10
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 bool is_long, 105 bool is_long,
106 const RequestGattReadCallback& callback) {} 106 const RequestGattReadCallback& callback) {}
107 107
108 void FakeBluetoothInstance::RequestGattWrite( 108 void FakeBluetoothInstance::RequestGattWrite(
109 mojom::BluetoothAddressPtr address, 109 mojom::BluetoothAddressPtr address,
110 int32_t attribute_handle, 110 int32_t attribute_handle,
111 int32_t offset, 111 int32_t offset,
112 mojo::Array<uint8_t> value, 112 mojo::Array<uint8_t> value,
113 const RequestGattWriteCallback& callback) {} 113 const RequestGattWriteCallback& callback) {}
114 114
115 void FakeBluetoothInstance::OnGetSdpRecords(
116 mojom::BluetoothStatus status,
117 mojom::BluetoothAddressPtr remove_addr,
118 mojom::BluetoothUUIDPtr target_uuid,
119 mojo::Array<mojom::BluetoothSdpRecordPtr> records) {}
120
115 } // namespace arc 121 } // namespace arc
OLDNEW
« no previous file with comments | « components/arc/test/fake_bluetooth_instance.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698