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

Unified Diff: device/hid/hid_device_info.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
« no previous file with comments | « device/hid/hid_device_info.h ('k') | device/hid/hid_device_info_linux.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/hid/hid_device_info.cc
diff --git a/device/hid/hid_device_info.cc b/device/hid/hid_device_info.cc
index c8e6f66379b5b1ee2cc3318634b87fe5ed7ca944..1e8a4f12882d75fa2eeecde406f05bb15d5b30f9 100644
--- a/device/hid/hid_device_info.cc
+++ b/device/hid/hid_device_info.cc
@@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include "build/build_config.h"
#include "device/hid/hid_device_info.h"
#include "device/hid/hid_report_descriptor.h"
@@ -17,7 +18,7 @@ HidDeviceInfo::HidDeviceInfo(const HidDeviceId& device_id,
const std::string& product_name,
const std::string& serial_number,
HidBusType bus_type,
- const std::vector<uint8> report_descriptor)
+ const std::vector<uint8_t> report_descriptor)
: device_id_(device_id),
vendor_id_(vendor_id),
product_id_(product_id),
« no previous file with comments | « device/hid/hid_device_info.h ('k') | device/hid/hid_device_info_linux.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698