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

Unified Diff: device/devices_app/devices_app.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/devices_app/devices_app.h ('k') | device/devices_app/usb/device_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/devices_app/devices_app.cc
diff --git a/device/devices_app/devices_app.cc b/device/devices_app/devices_app.cc
index 6e9cc9f18c0e4df5eb45740952ed2dcda2ba2beb..67675847675cd69ee23fa08275ac077d2a621559 100644
--- a/device/devices_app/devices_app.cc
+++ b/device/devices_app/devices_app.cc
@@ -4,6 +4,8 @@
#include "device/devices_app/devices_app.h"
+#include <stdint.h>
+
#include "base/bind.h"
#include "base/callback.h"
#include "base/macros.h"
@@ -25,7 +27,7 @@ namespace {
// The number of seconds to wait without any bound DeviceManagers before
// exiting the app.
-const int64 kIdleTimeoutInSeconds = 10;
+const int64_t kIdleTimeoutInSeconds = 10;
// A DeviceClient implementation to be constructed iff the app is not running
// in an embedder that provides a DeviceClient (i.e. running as a standalone
« no previous file with comments | « device/devices_app/devices_app.h ('k') | device/devices_app/usb/device_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698