| Index: device/bluetooth/bluetooth_utils.cc
|
| diff --git a/chrome/browser/chromeos/bluetooth/bluetooth_utils.cc b/device/bluetooth/bluetooth_utils.cc
|
| similarity index 91%
|
| rename from chrome/browser/chromeos/bluetooth/bluetooth_utils.cc
|
| rename to device/bluetooth/bluetooth_utils.cc
|
| index 02643c6a51d11b2ea969b9df705122c445d3052d..57ccd7ae7c95a33bb1e25fb55bb3afa748f6ce49 100644
|
| --- a/chrome/browser/chromeos/bluetooth/bluetooth_utils.cc
|
| +++ b/device/bluetooth/bluetooth_utils.cc
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "chrome/browser/chromeos/bluetooth/bluetooth_utils.h"
|
| +#include "device/bluetooth/bluetooth_utils.h"
|
|
|
| #include <vector>
|
|
|
| @@ -18,8 +18,8 @@ static const char* kCommonUuidPrefix = "0000";
|
| static const int kUuidSize = 36;
|
| } // namespace
|
|
|
| -namespace chromeos {
|
| -namespace bluetooth_utils {
|
| +namespace bluetooth {
|
| +namespace utils {
|
|
|
| bool str2ba(const std::string& in_address, bdaddr_t* out_address) {
|
| if (!out_address)
|
| @@ -84,5 +84,5 @@ std::string CanonicalUuid(std::string uuid) {
|
| return uuid_result;
|
| }
|
|
|
| -} // namespace bluetooth_utils
|
| -} // namespace chromeos
|
| +} // namespace utils
|
| +} // namespace bluetooth
|
|
|