// 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 "device/bluetooth/bluetooth_profile.h" #if defined(OS_MACOSX) #include "base/mac/mac_util.h" #include "device/bluetooth/bluetooth_profile_mac.h" #endif #include namespace device { BluetoothProfile::Options::Options() : channel(0), psm(0), require_authentication(false), require_authorization(false), auto_connect(false), version(0), features(0) { } BluetoothProfile::Options::~Options() { } BluetoothProfile::BluetoothProfile() { } BluetoothProfile::~BluetoothProfile() { } // static void BluetoothProfile::Register(const std::string& uuid, const Options& options, const ProfileCallback& callback) { BluetoothProfile* profile = NULL; #if defined(OS_MACOSX) if (base::mac::IsOSLionOrLater()) profile = new BluetoothProfileMac(uuid, options.name); #endif callback.Run(profile); } } // namespace device