| Index: chromeos/dbus/fake_bluetooth_gatt_descriptor_service_provider.h
|
| diff --git a/chromeos/dbus/fake_bluetooth_gatt_descriptor_service_provider.h b/chromeos/dbus/fake_bluetooth_gatt_descriptor_service_provider.h
|
| deleted file mode 100644
|
| index e9099b91371f4d311dd6786a09227cbed3a22b08..0000000000000000000000000000000000000000
|
| --- a/chromeos/dbus/fake_bluetooth_gatt_descriptor_service_provider.h
|
| +++ /dev/null
|
| @@ -1,67 +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.
|
| -
|
| -#ifndef CHROMEOS_DBUS_FAKE_BLUETOOTH_GATT_DESCRIPTOR_SERVICE_PROVIDER_H_
|
| -#define CHROMEOS_DBUS_FAKE_BLUETOOTH_GATT_DESCRIPTOR_SERVICE_PROVIDER_H_
|
| -
|
| -#include <string>
|
| -#include <vector>
|
| -
|
| -#include "chromeos/chromeos_export.h"
|
| -#include "chromeos/dbus/bluetooth_gatt_descriptor_service_provider.h"
|
| -#include "dbus/object_path.h"
|
| -
|
| -namespace chromeos {
|
| -
|
| -// FakeBluetoothGattDescriptorServiceProvider simulates behavior of a local
|
| -// GATT descriptor object and is used both in test cases in place of a mock
|
| -// and on the Linux desktop.
|
| -class CHROMEOS_EXPORT FakeBluetoothGattDescriptorServiceProvider
|
| - : public BluetoothGattDescriptorServiceProvider {
|
| - public:
|
| - FakeBluetoothGattDescriptorServiceProvider(
|
| - const dbus::ObjectPath& object_path,
|
| - Delegate* delegate,
|
| - const std::string& uuid,
|
| - const std::vector<std::string>& permissions,
|
| - const dbus::ObjectPath& characteristic_path);
|
| - ~FakeBluetoothGattDescriptorServiceProvider() override;
|
| -
|
| - // BluetoothGattDescriptorServiceProvider override.
|
| - void SendValueChanged(const std::vector<uint8>& value) override;
|
| -
|
| - // Methods to simulate value get/set requests issued from a remote device. The
|
| - // methods do nothing, if the associated service was not registered with the
|
| - // GATT manager.
|
| - void GetValue(const Delegate::ValueCallback& callback,
|
| - const Delegate::ErrorCallback& error_callback);
|
| - void SetValue(const std::vector<uint8>& value,
|
| - const base::Closure& callback,
|
| - const Delegate::ErrorCallback& error_callback);
|
| -
|
| - const dbus::ObjectPath& object_path() const { return object_path_; }
|
| - const std::string& uuid() const { return uuid_; }
|
| - const dbus::ObjectPath& characteristic_path() const {
|
| - return characteristic_path_;
|
| - }
|
| -
|
| - private:
|
| - // D-Bus object path of the fake GATT descriptor.
|
| - dbus::ObjectPath object_path_;
|
| -
|
| - // 128-bit GATT descriptor UUID.
|
| - std::string uuid_;
|
| -
|
| - // Object path of the characteristic that this descriptor belongs to.
|
| - dbus::ObjectPath characteristic_path_;
|
| -
|
| - // The delegate that method calls are passed on to.
|
| - Delegate* delegate_;
|
| -
|
| - DISALLOW_COPY_AND_ASSIGN(FakeBluetoothGattDescriptorServiceProvider);
|
| -};
|
| -
|
| -} // namespace chromeos
|
| -
|
| -#endif // CHROMEOS_DBUS_FAKE_BLUETOOTH_GATT_DESCRIPTOR_SERVICE_PROVIDER_H_
|
|
|