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

Unified Diff: extensions/browser/api/bluetooth_low_energy/utils.cc

Issue 2370373002: Move chrome.bluetoothLowEnergy out of //chrome. (Closed)
Patch Set: build fix Created 4 years, 3 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: extensions/browser/api/bluetooth_low_energy/utils.cc
diff --git a/chrome/browser/extensions/api/bluetooth_low_energy/utils.cc b/extensions/browser/api/bluetooth_low_energy/utils.cc
similarity index 94%
rename from chrome/browser/extensions/api/bluetooth_low_energy/utils.cc
rename to extensions/browser/api/bluetooth_low_energy/utils.cc
index 61befe6ed9f0219539fe22953662e969cc6e486f..5767b7a6e0410ee45ccb8afdfc0b166621c5dc7e 100644
--- a/chrome/browser/extensions/api/bluetooth_low_energy/utils.cc
+++ b/extensions/browser/api/bluetooth_low_energy/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/extensions/api/bluetooth_low_energy/utils.h"
+#include "extensions/browser/api/bluetooth_low_energy/utils.h"
#include <stddef.h>
#include <iterator>
@@ -22,8 +22,7 @@ std::unique_ptr<base::ListValue> CharacteristicPropertiesToValue(
std::unique_ptr<base::ListValue> property_list(new base::ListValue());
for (std::vector<CharacteristicProperty>::const_iterator iter =
properties.begin();
- iter != properties.end();
- ++iter)
+ iter != properties.end(); ++iter)
property_list->AppendString(ToString(*iter));
return property_list;
}

Powered by Google App Engine
This is Rietveld 408576698