| Index: chromeos/dbus/fake_bluetooth_agent_service_provider.cc
|
| diff --git a/chromeos/dbus/fake_bluetooth_agent_service_provider.cc b/chromeos/dbus/fake_bluetooth_agent_service_provider.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..16ba3c07ca2211070eab1016d45a4e75b29ee55a
|
| --- /dev/null
|
| +++ b/chromeos/dbus/fake_bluetooth_agent_service_provider.cc
|
| @@ -0,0 +1,105 @@
|
| +// Copyright (c) 2013 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 "chromeos/dbus/fake_bluetooth_agent_service_provider.h"
|
| +
|
| +#include "chromeos/dbus/dbus_thread_manager.h"
|
| +#include "chromeos/dbus/fake_bluetooth_agent_manager_client.h"
|
| +#include "dbus/object_path.h"
|
| +
|
| +namespace chromeos {
|
| +
|
| +FakeBluetoothAgentServiceProvider::FakeBluetoothAgentServiceProvider(
|
| + const dbus::ObjectPath& object_path,
|
| + Delegate* delegate)
|
| + : object_path_(object_path),
|
| + delegate_(delegate) {
|
| + VLOG(1) << "Creating Bluetooth Agent: " << object_path_.value();
|
| +
|
| + FakeBluetoothAgentManagerClient* fake_bluetooth_agent_manager_client =
|
| + static_cast<FakeBluetoothAgentManagerClient*>(
|
| + DBusThreadManager::Get()->
|
| + GetExperimentalBluetoothAgentManagerClient());
|
| + fake_bluetooth_agent_manager_client->RegisterAgentServiceProvider(this);
|
| +}
|
| +
|
| +FakeBluetoothAgentServiceProvider::~FakeBluetoothAgentServiceProvider() {
|
| + VLOG(1) << "Cleaning up Bluetooth Agent: " << object_path_.value();
|
| +
|
| + FakeBluetoothAgentManagerClient* fake_bluetooth_agent_manager_client =
|
| + static_cast<FakeBluetoothAgentManagerClient*>(
|
| + DBusThreadManager::Get()->
|
| + GetExperimentalBluetoothAgentManagerClient());
|
| + fake_bluetooth_agent_manager_client->UnregisterAgentServiceProvider(this);
|
| +}
|
| +
|
| +void FakeBluetoothAgentServiceProvider::Release() {
|
| + VLOG(1) << object_path_.value() << ": Release";
|
| + delegate_->Release();
|
| +}
|
| +
|
| +void FakeBluetoothAgentServiceProvider::RequestPinCode(
|
| + const dbus::ObjectPath& device_path,
|
| + const Delegate::PinCodeCallback& callback) {
|
| + VLOG(1) << object_path_.value() << ": RequestPinCode for "
|
| + << device_path.value();
|
| + delegate_->RequestPinCode(device_path, callback);
|
| +}
|
| +
|
| +void FakeBluetoothAgentServiceProvider::DisplayPinCode(
|
| + const dbus::ObjectPath& device_path,
|
| + const std::string& pincode) {
|
| + VLOG(1) << object_path_.value() << ": DisplayPincode " << pincode << " for "
|
| + << device_path.value();
|
| + delegate_->DisplayPinCode(device_path, pincode);
|
| +}
|
| +
|
| +void FakeBluetoothAgentServiceProvider::RequestPasskey(
|
| + const dbus::ObjectPath& device_path,
|
| + const Delegate::PasskeyCallback& callback) {
|
| + VLOG(1) << object_path_.value() << ": RequestPasskey for "
|
| + << device_path.value();
|
| + delegate_->RequestPasskey(device_path, callback);
|
| +}
|
| +
|
| +void FakeBluetoothAgentServiceProvider::DisplayPasskey(
|
| + const dbus::ObjectPath& device_path,
|
| + uint32 passkey, int16 entered) {
|
| + VLOG(1) << object_path_.value() << ": DisplayPasskey " << passkey
|
| + << " (" << entered << " entered) for "<< device_path.value();
|
| + delegate_->DisplayPasskey(device_path, passkey, entered);
|
| +}
|
| +
|
| +void FakeBluetoothAgentServiceProvider::RequestConfirmation(
|
| + const dbus::ObjectPath& device_path,
|
| + uint32 passkey,
|
| + const Delegate::ConfirmationCallback& callback) {
|
| + VLOG(1) << object_path_.value() << ": RequestConfirmation " << passkey
|
| + << " for "<< device_path.value();
|
| + delegate_->RequestConfirmation(device_path, passkey, callback);
|
| +}
|
| +
|
| +void FakeBluetoothAgentServiceProvider::RequestAuthorization(
|
| + const dbus::ObjectPath& device_path,
|
| + const Delegate::ConfirmationCallback& callback) {
|
| + VLOG(1) << object_path_.value() << ": RequestAuthorization for "
|
| + << device_path.value();
|
| + delegate_->RequestAuthorization(device_path, callback);
|
| +}
|
| +
|
| +void FakeBluetoothAgentServiceProvider::AuthorizeService(
|
| + const dbus::ObjectPath& device_path,
|
| + const std::string& uuid,
|
| + const Delegate::ConfirmationCallback& callback) {
|
| + VLOG(1) << object_path_.value() << ": AuthorizeService " << uuid << " for "
|
| + << device_path.value();
|
| + delegate_->AuthorizeService(device_path, uuid, callback);
|
| +}
|
| +
|
| +void FakeBluetoothAgentServiceProvider::Cancel() {
|
| + VLOG(1) << object_path_.value() << ": Cancel";
|
| + delegate_->Cancel();
|
| +}
|
| +
|
| +} // namespace chromeos
|
|
|