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

Unified Diff: device/bluetooth/test/fake_peripheral.cc

Issue 2858803003: bluetooth: Implement simulatePreconnectedPeripheral. (Closed)
Patch Set: small cleanup Created 3 years, 8 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
Index: device/bluetooth/test/fake_peripheral.cc
diff --git a/device/bluetooth/test/fake_peripheral.cc b/device/bluetooth/test/fake_peripheral.cc
new file mode 100644
index 0000000000000000000000000000000000000000..de186a2334d30f9e9c3203e057e1ff7f36a0a602
--- /dev/null
+++ b/device/bluetooth/test/fake_peripheral.cc
@@ -0,0 +1,182 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "device/bluetooth/test/fake_peripheral.h"
+
+namespace bluetooth {
+
+FakePeripheral::FakePeripheral(FakeCentral* fake_central,
+ const std::string& address,
+ const std::string& name)
+ : device::BluetoothDevice(fake_central),
+ address_(address),
+ id_(address),
+ name_(name),
+ gatt_connected_(false) {}
+
+FakePeripheral::~FakePeripheral() {}
+
+void FakePeripheral::SetGattConnected(bool connected) {
+ gatt_connected_ = connected;
+}
+
+uint32_t FakePeripheral::GetBluetoothClass() const {
+ NOTREACHED();
+ return 0;
+}
+
+#if defined(OS_CHROMEOS) || defined(OS_LINUX)
+device::BluetoothTransport FakePeripheral::GetType() const {
+ NOTREACHED();
+ return device::BLUETOOTH_TRANSPORT_INVALID;
+}
+#endif
+
+std::string FakePeripheral::GetIdentifier() const {
+ return id_;
+}
+
+std::string FakePeripheral::GetAddress() const {
+ return address_;
+}
+
+device::BluetoothDevice::VendorIDSource FakePeripheral::GetVendorIDSource()
+ const {
+ NOTREACHED();
+ return VENDOR_ID_UNKNOWN;
+}
+
+uint16_t FakePeripheral::GetVendorID() const {
+ NOTREACHED();
+ return 0;
+}
+
+uint16_t FakePeripheral::GetProductID() const {
+ NOTREACHED();
+ return 0;
+}
+
+uint16_t FakePeripheral::GetDeviceID() const {
+ NOTREACHED();
+ return 0;
+}
+
+uint16_t FakePeripheral::GetAppearance() const {
+ NOTREACHED();
+ return 0;
+}
+
+base::Optional<std::string> FakePeripheral::GetName() const {
+ return name_;
+}
+
+base::string16 FakePeripheral::GetNameForDisplay() const {
+ return base::string16();
+}
+
+bool FakePeripheral::IsPaired() const {
+ NOTREACHED();
+ return false;
+}
+
+bool FakePeripheral::IsConnected() const {
+ NOTREACHED();
+ return false;
+}
+
+bool FakePeripheral::IsGattConnected() const {
+ return gatt_connected_;
+}
+
+bool FakePeripheral::IsConnectable() const {
+ NOTREACHED();
+ return false;
+}
+
+bool FakePeripheral::IsConnecting() const {
+ NOTREACHED();
+ return false;
+}
+
+device::BluetoothDevice::UUIDSet FakePeripheral::GetUUIDs() const {
+ return UUIDSet();
+}
+
+bool FakePeripheral::ExpectingPinCode() const {
+ NOTREACHED();
+ return false;
+}
+
+bool FakePeripheral::ExpectingPasskey() const {
+ NOTREACHED();
+ return false;
+}
+
+bool FakePeripheral::ExpectingConfirmation() const {
+ NOTREACHED();
+ return false;
+}
+
+void FakePeripheral::GetConnectionInfo(const ConnectionInfoCallback& callback) {
+ NOTREACHED();
+}
+
+void FakePeripheral::Connect(PairingDelegate* pairing_delegate,
+ const base::Closure& callback,
+ const ConnectErrorCallback& error_callback) {
+ NOTREACHED();
+}
+
+void FakePeripheral::SetPinCode(const std::string& pincode) {
+ NOTREACHED();
+}
+
+void FakePeripheral::SetPasskey(uint32_t passkey) {
+ NOTREACHED();
+}
+
+void FakePeripheral::ConfirmPairing() {
+ NOTREACHED();
+}
+
+void FakePeripheral::RejectPairing() {
+ NOTREACHED();
+}
+
+void FakePeripheral::CancelPairing() {
+ NOTREACHED();
+}
+
+void FakePeripheral::Disconnect(const base::Closure& callback,
+ const ErrorCallback& error_callback) {
+ NOTREACHED();
+}
+
+void FakePeripheral::Forget(const base::Closure& callback,
+ const ErrorCallback& error_callback) {
+ NOTREACHED();
+}
+
+void FakePeripheral::ConnectToService(
+ const device::BluetoothUUID& uuid,
+ const ConnectToServiceCallback& callback,
+ const ConnectToServiceErrorCallback& error_callback) {
+ NOTREACHED();
+}
+
+void FakePeripheral::ConnectToServiceInsecurely(
+ const device::BluetoothUUID& uuid,
+ const ConnectToServiceCallback& callback,
+ const ConnectToServiceErrorCallback& error_callback) {
+ NOTREACHED();
+}
+
+void FakePeripheral::CreateGattConnectionImpl() {
+ NOTREACHED();
+}
+
+void FakePeripheral::DisconnectGatt() {
+ NOTREACHED();
+}
+} // namespace bluetooth

Powered by Google App Engine
This is Rietveld 408576698