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

Unified Diff: tools/battor_agent/battor_agent_bin.cc

Issue 1549203002: Switch to standard integer types in tools/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « tools/android/memdump/memdump.cc ('k') | tools/battor_agent/battor_connection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/battor_agent/battor_agent_bin.cc
diff --git a/tools/battor_agent/battor_agent_bin.cc b/tools/battor_agent/battor_agent_bin.cc
index 5843ae906b10f6e3f97aaf7075808cda945e38ef..c8a6eb2a84046e0687db4cae1df34943248aea32 100644
--- a/tools/battor_agent/battor_agent_bin.cc
+++ b/tools/battor_agent/battor_agent_bin.cc
@@ -7,6 +7,8 @@
// controllers, such as Telemetry and Android Systrace, to issue high-level
// tracing commands to the BattOr..
+#include <stdint.h>
+
#include <iostream>
#include "base/at_exit.h"
@@ -25,7 +27,7 @@ namespace {
const char kIoThreadName[] = "BattOr IO Thread";
const char kFileThreadName[] = "BattOr File Thread";
const char kUiThreadName[] = "BattOr UI Thread";
-const int32 kBattOrCommandTimeoutSeconds = 10;
+const int32_t kBattOrCommandTimeoutSeconds = 10;
void PrintUsage() {
std::cout << "Usage: battor_agent <command> <arguments>" << endl
« no previous file with comments | « tools/android/memdump/memdump.cc ('k') | tools/battor_agent/battor_connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698