| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_adapter_client.h" | 5 #include "chromeos/dbus/bluetooth_adapter_client.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 "chromeos/dbus/fake_bluetooth_adapter_client.h" | |
| 10 #include "dbus/bus.h" | 9 #include "dbus/bus.h" |
| 11 #include "dbus/message.h" | 10 #include "dbus/message.h" |
| 12 #include "dbus/object_manager.h" | 11 #include "dbus/object_manager.h" |
| 13 #include "dbus/object_path.h" | 12 #include "dbus/object_path.h" |
| 14 #include "dbus/object_proxy.h" | 13 #include "dbus/object_proxy.h" |
| 15 #include "third_party/cros_system_api/dbus/service_constants.h" | 14 #include "third_party/cros_system_api/dbus/service_constants.h" |
| 16 | 15 |
| 17 namespace chromeos { | 16 namespace chromeos { |
| 18 | 17 |
| 19 const char BluetoothAdapterClient::kNoResponseError[] = | 18 const char BluetoothAdapterClient::kNoResponseError[] = |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 | 250 |
| 252 DISALLOW_COPY_AND_ASSIGN(BluetoothAdapterClientImpl); | 251 DISALLOW_COPY_AND_ASSIGN(BluetoothAdapterClientImpl); |
| 253 }; | 252 }; |
| 254 | 253 |
| 255 BluetoothAdapterClient::BluetoothAdapterClient() { | 254 BluetoothAdapterClient::BluetoothAdapterClient() { |
| 256 } | 255 } |
| 257 | 256 |
| 258 BluetoothAdapterClient::~BluetoothAdapterClient() { | 257 BluetoothAdapterClient::~BluetoothAdapterClient() { |
| 259 } | 258 } |
| 260 | 259 |
| 261 BluetoothAdapterClient* BluetoothAdapterClient::Create( | 260 BluetoothAdapterClient* BluetoothAdapterClient::Create() { |
| 262 DBusClientImplementationType type) { | 261 return new BluetoothAdapterClientImpl; |
| 263 if (type == REAL_DBUS_CLIENT_IMPLEMENTATION) | |
| 264 return new BluetoothAdapterClientImpl(); | |
| 265 DCHECK_EQ(STUB_DBUS_CLIENT_IMPLEMENTATION, type); | |
| 266 return new FakeBluetoothAdapterClient(); | |
| 267 } | 262 } |
| 268 | 263 |
| 269 } // namespace chromeos | 264 } // namespace chromeos |
| OLD | NEW |