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

Unified Diff: device/bluetooth/bluetooth_remote_gatt_descriptor_chromeos.cc

Issue 1415573014: Reland "Add Linux support for the Bluetooth API" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: build fix. Created 5 years, 1 month 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/bluetooth_remote_gatt_descriptor_chromeos.cc
diff --git a/device/bluetooth/bluetooth_remote_gatt_descriptor_chromeos.cc b/device/bluetooth/bluetooth_remote_gatt_descriptor_chromeos.cc
deleted file mode 100644
index f864c3be1464f91fdcd9a9a2038c567c3bab0e31..0000000000000000000000000000000000000000
--- a/device/bluetooth/bluetooth_remote_gatt_descriptor_chromeos.cc
+++ /dev/null
@@ -1,126 +0,0 @@
-// Copyright 2014 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/bluetooth_remote_gatt_descriptor_chromeos.h"
-
-#include "base/bind.h"
-#include "base/logging.h"
-#include "base/strings/stringprintf.h"
-#include "device/bluetooth/bluetooth_remote_gatt_characteristic_chromeos.h"
-#include "device/bluetooth/bluetooth_remote_gatt_service_chromeos.h"
-#include "device/bluetooth/dbus/bluetooth_gatt_descriptor_client.h"
-#include "device/bluetooth/dbus/bluez_dbus_manager.h"
-
-namespace chromeos {
-
-namespace {
-
-// Stream operator for logging vector<uint8>.
-std::ostream& operator<<(std::ostream& out, const std::vector<uint8> bytes) {
- out << "[";
- for (std::vector<uint8>::const_iterator iter = bytes.begin();
- iter != bytes.end(); ++iter) {
- out << base::StringPrintf("%02X", *iter);
- }
- return out << "]";
-}
-
-} // namespace
-
-BluetoothRemoteGattDescriptorChromeOS::BluetoothRemoteGattDescriptorChromeOS(
- BluetoothRemoteGattCharacteristicChromeOS* characteristic,
- const dbus::ObjectPath& object_path)
- : object_path_(object_path),
- characteristic_(characteristic),
- weak_ptr_factory_(this) {
- VLOG(1) << "Creating remote GATT descriptor with identifier: "
- << GetIdentifier() << ", UUID: " << GetUUID().canonical_value();
-}
-
-BluetoothRemoteGattDescriptorChromeOS::
- ~BluetoothRemoteGattDescriptorChromeOS() {
-}
-
-std::string BluetoothRemoteGattDescriptorChromeOS::GetIdentifier() const {
- return object_path_.value();
-}
-
-device::BluetoothUUID BluetoothRemoteGattDescriptorChromeOS::GetUUID() const {
- bluez::BluetoothGattDescriptorClient::Properties* properties =
- bluez::BluezDBusManager::Get()
- ->GetBluetoothGattDescriptorClient()
- ->GetProperties(object_path_);
- DCHECK(properties);
- return device::BluetoothUUID(properties->uuid.value());
-}
-
-bool BluetoothRemoteGattDescriptorChromeOS::IsLocal() const {
- return false;
-}
-
-const std::vector<uint8>&
-BluetoothRemoteGattDescriptorChromeOS::GetValue() const {
- bluez::BluetoothGattDescriptorClient::Properties* properties =
- bluez::BluezDBusManager::Get()
- ->GetBluetoothGattDescriptorClient()
- ->GetProperties(object_path_);
-
- DCHECK(properties);
-
- return properties->value.value();
-}
-
-device::BluetoothGattCharacteristic*
-BluetoothRemoteGattDescriptorChromeOS::GetCharacteristic() const {
- return characteristic_;
-}
-
-device::BluetoothGattCharacteristic::Permissions
-BluetoothRemoteGattDescriptorChromeOS::GetPermissions() const {
- // TODO(armansito): Once BlueZ defines the permissions, return the correct
- // values here.
- return device::BluetoothGattCharacteristic::PERMISSION_NONE;
-}
-
-void BluetoothRemoteGattDescriptorChromeOS::ReadRemoteDescriptor(
- const ValueCallback& callback,
- const ErrorCallback& error_callback) {
- VLOG(1) << "Sending GATT characteristic descriptor read request to "
- << "descriptor: " << GetIdentifier() << ", UUID: "
- << GetUUID().canonical_value();
-
- bluez::BluezDBusManager::Get()->GetBluetoothGattDescriptorClient()->ReadValue(
- object_path_, callback,
- base::Bind(&BluetoothRemoteGattDescriptorChromeOS::OnError,
- weak_ptr_factory_.GetWeakPtr(), error_callback));
-}
-
-void BluetoothRemoteGattDescriptorChromeOS::WriteRemoteDescriptor(
- const std::vector<uint8>& new_value,
- const base::Closure& callback,
- const ErrorCallback& error_callback) {
- VLOG(1) << "Sending GATT characteristic descriptor write request to "
- << "characteristic: " << GetIdentifier() << ", UUID: "
- << GetUUID().canonical_value() << ", with value: "
- << new_value << ".";
-
- bluez::BluezDBusManager::Get()
- ->GetBluetoothGattDescriptorClient()
- ->WriteValue(object_path_, new_value, callback,
- base::Bind(&BluetoothRemoteGattDescriptorChromeOS::OnError,
- weak_ptr_factory_.GetWeakPtr(), error_callback));
-}
-
-void BluetoothRemoteGattDescriptorChromeOS::OnError(
- const ErrorCallback& error_callback,
- const std::string& error_name,
- const std::string& error_message) {
- VLOG(1) << "Operation failed: " << error_name
- << ", message: " << error_message;
-
- error_callback.Run(
- BluetoothRemoteGattServiceChromeOS::DBusErrorToServiceError(error_name));
-}
-
-} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698