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

Unified Diff: device/bluetooth/bluetooth_service_record_win.cc

Issue 1542163002: Switch to standard integer types in device/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: win Created 5 years 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_win.cc
diff --git a/device/bluetooth/bluetooth_service_record_win.cc b/device/bluetooth/bluetooth_service_record_win.cc
index c4fccde37137db8bfbe3a4a0593410ce6f8248a7..1b91e7d8bfff6f258a195ab9ecb08bb175ba3cab 100644
--- a/device/bluetooth/bluetooth_service_record_win.cc
+++ b/device/bluetooth/bluetooth_service_record_win.cc
@@ -6,7 +6,6 @@
#include <string>
-#include "base/basictypes.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/stringprintf.h"
#include "device/bluetooth/bluetooth_init_win.h"
@@ -14,9 +13,9 @@
namespace {
-const uint16 kProtocolDescriptorListId = 4;
-const uint16 kRfcommUuid = 3;
-const uint16 kUuidId = 1;
+const uint16_t kProtocolDescriptorListId = 4;
+const uint16_t kRfcommUuid = 3;
+const uint16_t kUuidId = 1;
bool AdvanceToSdpType(const SDP_ELEMENT_DATA& sequence_data,
SDP_TYPE type,
@@ -36,7 +35,7 @@ bool AdvanceToSdpType(const SDP_ELEMENT_DATA& sequence_data,
void ExtractChannels(const SDP_ELEMENT_DATA& protocol_descriptor_list_data,
bool* supports_rfcomm,
- uint8* rfcomm_channel) {
+ uint8_t* rfcomm_channel) {
HBLUETOOTH_CONTAINER_ELEMENT sequence_element = NULL;
SDP_ELEMENT_DATA sequence_data;
while (AdvanceToSdpType(protocol_descriptor_list_data,
@@ -104,12 +103,11 @@ BTH_ADDR ConvertToBthAddr(const std::string& address) {
numbers_only += address.substr(i * 3, 2);
}
- std::vector<uint8> address_bytes;
+ std::vector<uint8_t> address_bytes;
base::HexStringToBytes(numbers_only, &address_bytes);
int byte_position = 0;
- for (std::vector<uint8>::reverse_iterator iter = address_bytes.rbegin();
- iter != address_bytes.rend();
- ++iter) {
+ for (std::vector<uint8_t>::reverse_iterator iter = address_bytes.rbegin();
+ iter != address_bytes.rend(); ++iter) {
bth_addr += *iter * pow(256.0, byte_position);
byte_position++;
}
@@ -123,7 +121,7 @@ namespace device {
BluetoothServiceRecordWin::BluetoothServiceRecordWin(
const std::string& device_address,
const std::string& name,
- const std::vector<uint8>& sdp_bytes,
+ const std::vector<uint8_t>& sdp_bytes,
const BluetoothUUID& gatt_uuid)
: device_bth_addr_(ConvertToBthAddr(device_address)),
device_address_(device_address),
« no previous file with comments | « device/bluetooth/bluetooth_service_record_win.h ('k') | device/bluetooth/bluetooth_service_record_win_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698