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

Unified Diff: device/hid/hid_report_descriptor.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_report_descriptor.h ('k') | device/hid/hid_report_descriptor_item.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/hid/hid_report_descriptor.cc
diff --git a/device/hid/hid_report_descriptor.cc b/device/hid/hid_report_descriptor.cc
index f211eb468e639f3f9b6aed81916a1c3c2ea37eac..a97ef60ab0b1465904d39069a41f3dc4c837b9e2 100644
--- a/device/hid/hid_report_descriptor.cc
+++ b/device/hid/hid_report_descriptor.cc
@@ -14,7 +14,7 @@ const int kBitsPerByte = 8;
} // namespace
-HidReportDescriptor::HidReportDescriptor(const std::vector<uint8>& bytes) {
+HidReportDescriptor::HidReportDescriptor(const std::vector<uint8_t>& bytes) {
size_t header_index = 0;
HidReportDescriptorItem* item = NULL;
while (header_index < bytes.size()) {
« no previous file with comments | « device/hid/hid_report_descriptor.h ('k') | device/hid/hid_report_descriptor_item.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698