OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chromeos/dbus/bluetooth_gatt_descriptor_service_provider.h" | 5 #include "chromeos/dbus/bluetooth_gatt_descriptor_service_provider.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
10 #include "base/strings/string_util.h" | 10 #include "base/strings/string_util.h" |
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
453 | 453 |
454 // static | 454 // static |
455 BluetoothGattDescriptorServiceProvider* | 455 BluetoothGattDescriptorServiceProvider* |
456 BluetoothGattDescriptorServiceProvider::Create( | 456 BluetoothGattDescriptorServiceProvider::Create( |
457 dbus::Bus* bus, | 457 dbus::Bus* bus, |
458 const dbus::ObjectPath& object_path, | 458 const dbus::ObjectPath& object_path, |
459 Delegate* delegate, | 459 Delegate* delegate, |
460 const std::string& uuid, | 460 const std::string& uuid, |
461 const std::vector<std::string>& permissions, | 461 const std::vector<std::string>& permissions, |
462 const dbus::ObjectPath& characteristic_path) { | 462 const dbus::ObjectPath& characteristic_path) { |
463 if (!DBusThreadManager::IsUsingStub(DBusClientBundle::BLUETOOTH)) { | 463 if (!DBusThreadManager::Get()->IsUsingStub(DBusClientBundle::BLUETOOTH)) { |
464 return new BluetoothGattDescriptorServiceProviderImpl( | 464 return new BluetoothGattDescriptorServiceProviderImpl( |
465 bus, object_path, delegate, uuid, permissions, characteristic_path); | 465 bus, object_path, delegate, uuid, permissions, characteristic_path); |
466 } | 466 } |
467 return new FakeBluetoothGattDescriptorServiceProvider( | 467 return new FakeBluetoothGattDescriptorServiceProvider( |
468 object_path, delegate, uuid, permissions, characteristic_path); | 468 object_path, delegate, uuid, permissions, characteristic_path); |
469 } | 469 } |
470 | 470 |
471 } // namespace chromeos | 471 } // namespace chromeos |
OLD | NEW |