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

Side by Side Diff: device/bluetooth/test/mock_bluetooth_gatt_characteristic.cc

Issue 255053002: chrome.bluetoothLowEnergy: Implement getCharacteristics. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « device/bluetooth/test/mock_bluetooth_gatt_characteristic.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
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "device/bluetooth/test/mock_bluetooth_gatt_characteristic.h"
6
7 #include "device/bluetooth/test/mock_bluetooth_gatt_service.h"
8
9 using testing::Return;
10 using testing::ReturnRefOfCopy;
11 using testing::_;
12
13 namespace device {
14
15 MockBluetoothGattCharacteristic::MockBluetoothGattCharacteristic(
16 MockBluetoothGattService* service,
17 const std::string& identifier,
18 const BluetoothUUID& uuid,
19 bool is_local,
20 Properties properties,
21 Permissions permissions) {
22 ON_CALL(*this, GetIdentifier()).WillByDefault(Return(identifier));
23 ON_CALL(*this, GetUUID()).WillByDefault(Return(uuid));
24 ON_CALL(*this, IsLocal()).WillByDefault(Return(is_local));
25 ON_CALL(*this, GetValue())
26 .WillByDefault(ReturnRefOfCopy(std::vector<uint8>()));
27 ON_CALL(*this, GetService()).WillByDefault(Return(service));
28 ON_CALL(*this, GetProperties()).WillByDefault(Return(properties));
29 ON_CALL(*this, GetPermissions()).WillByDefault(Return(permissions));
30 ON_CALL(*this, GetDescriptors())
31 .WillByDefault(Return(std::vector<BluetoothGattDescriptor*>()));
32 }
33
34 MockBluetoothGattCharacteristic::~MockBluetoothGattCharacteristic() {
35 }
36
37 } // namespace device
OLDNEW
« no previous file with comments | « device/bluetooth/test/mock_bluetooth_gatt_characteristic.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698