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" |
11 #include "base/sys_info.h" | |
12 #include "base/threading/platform_thread.h" | 11 #include "base/threading/platform_thread.h" |
| 12 #include "chromeos/dbus/dbus_thread_manager.h" |
13 #include "chromeos/dbus/fake_bluetooth_gatt_descriptor_service_provider.h" | 13 #include "chromeos/dbus/fake_bluetooth_gatt_descriptor_service_provider.h" |
14 #include "dbus/exported_object.h" | 14 #include "dbus/exported_object.h" |
15 #include "dbus/message.h" | 15 #include "dbus/message.h" |
16 #include "third_party/cros_system_api/dbus/service_constants.h" | 16 #include "third_party/cros_system_api/dbus/service_constants.h" |
17 | 17 |
18 namespace chromeos { | 18 namespace chromeos { |
19 namespace { | 19 namespace { |
20 const char kErrorInvalidArgs[] = | 20 const char kErrorInvalidArgs[] = |
21 "org.freedesktop.DBus.Error.InvalidArgs"; | 21 "org.freedesktop.DBus.Error.InvalidArgs"; |
22 const char kErrorPropertyReadOnly[] = | 22 const char kErrorPropertyReadOnly[] = |
(...skipping 430 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 (base::SysInfo::IsRunningOnChromeOS()) { | 463 if (!DBusThreadManager::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 |