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

Unified Diff: device/hid/hid_device_info_linux.h

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.cc ('k') | device/hid/hid_device_info_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/hid/hid_device_info_linux.h
diff --git a/device/hid/hid_device_info_linux.h b/device/hid/hid_device_info_linux.h
index df2cd9726269890a20189f466deca2eb30d94952..6546c8ad19999c0dd8cb11ed1f6375ce46e54173 100644
--- a/device/hid/hid_device_info_linux.h
+++ b/device/hid/hid_device_info_linux.h
@@ -5,6 +5,8 @@
#ifndef DEVICE_HID_HID_DEVICE_INFO_LINUX_H_
#define DEVICE_HID_HID_DEVICE_INFO_LINUX_H_
+#include <stdint.h>
+
#include "device/hid/hid_device_info.h"
namespace device {
@@ -18,7 +20,7 @@ class HidDeviceInfoLinux : public HidDeviceInfo {
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);
const std::string& device_node() const { return device_node_; }
« no previous file with comments | « device/hid/hid_device_info.cc ('k') | device/hid/hid_device_info_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698