| Index: device/bluetooth/bluetooth_service_record.cc
|
| diff --git a/chrome/browser/chromeos/bluetooth/bluetooth_service_record.cc b/device/bluetooth/bluetooth_service_record.cc
|
| similarity index 93%
|
| rename from chrome/browser/chromeos/bluetooth/bluetooth_service_record.cc
|
| rename to device/bluetooth/bluetooth_service_record.cc
|
| index b80ce299bbb2269000d5110fbd6ee0b229c692d0..0ea18d7dac697b52b196ae167b906243e99e2fd4 100644
|
| --- a/chrome/browser/chromeos/bluetooth/bluetooth_service_record.cc
|
| +++ b/device/bluetooth/bluetooth_service_record.cc
|
| @@ -2,14 +2,14 @@
|
| // 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_service_record.h"
|
| +#include "device/bluetooth/bluetooth_service_record.h"
|
|
|
| #include <string>
|
| #include <vector>
|
|
|
| #include "base/logging.h"
|
| #include "base/string_number_conversions.h"
|
| -#include "chrome/browser/chromeos/bluetooth/bluetooth_utils.h"
|
| +#include "device/bluetooth/bluetooth_utils.h"
|
| #include "third_party/libxml/chromium/libxml_utils.h"
|
|
|
| namespace {
|
| @@ -44,7 +44,7 @@ bool ExtractTextValue(XmlReader* reader, std::string* value_out) {
|
|
|
| } // namespace
|
|
|
| -namespace chromeos {
|
| +namespace device {
|
|
|
| BluetoothServiceRecord::BluetoothServiceRecord(
|
| const std::string& address,
|
| @@ -116,7 +116,7 @@ void BluetoothServiceRecord::ExtractUuid(XmlReader* reader) {
|
| } while (AdvanceToTag(reader, kSequenceNode) &&
|
| reader->Depth() != start_depth);
|
|
|
| - uuid_ = bluetooth_utils::CanonicalUuid(uuid_);
|
| + uuid_ = device::bluetooth_utils::CanonicalUuid(uuid_);
|
| }
|
|
|
| -} // namespace chromeos
|
| +} // namespace device
|
|
|