dbus_bluez_manager_wrapper_linux.cc 658 B

1234567891011121314151617181920212223
  1. // Copyright 2016 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "device/bluetooth/dbus/dbus_bluez_manager_wrapper_linux.h"
  5. #include "device/bluetooth/dbus/bluez_dbus_manager.h"
  6. #include "device/bluetooth/dbus/bluez_dbus_thread_manager.h"
  7. namespace bluez {
  8. // static
  9. void DBusBluezManagerWrapperLinux::Initialize() {
  10. BluezDBusManager::Initialize(nullptr /* system_bus */);
  11. }
  12. // static
  13. void DBusBluezManagerWrapperLinux::Shutdown() {
  14. bluez::BluezDBusManager::Shutdown();
  15. bluez::BluezDBusThreadManager::Shutdown();
  16. }
  17. } // namespace bluez