Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Unified Diff: device/bluetooth/bluetooth_service_record.cc

Issue 11075006: Moved bluetooth adapter files to device/bluetooth/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: renamed 'bluetooth' target to 'device_bluetooth'. Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698