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

Unified Diff: base/test/test_reg_util_win.cc

Issue 1544113002: Switch to standard integer types in base/test/. (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 | « base/test/test_reg_util_win.h ('k') | base/test/test_simple_task_runner.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/test/test_reg_util_win.cc
diff --git a/base/test/test_reg_util_win.cc b/base/test/test_reg_util_win.cc
index fdb91630b4999aac04adff28a8d5586b816b8c51..83c7fe67c81bfab5cb8341ca6811a338414b6adc 100644
--- a/base/test/test_reg_util_win.cc
+++ b/base/test/test_reg_util_win.cc
@@ -4,6 +4,8 @@
#include "base/test/test_reg_util_win.h"
+#include <stdint.h>
+
#include "base/guid.h"
#include "base/logging.h"
#include "base/strings/string_number_conversions.h"
@@ -38,7 +40,7 @@ void DeleteStaleTestKeys(const base::Time& now,
base::SPLIT_WANT_NONEMPTY);
if (tokens.empty())
continue;
- int64 key_name_as_number = 0;
+ int64_t key_name_as_number = 0;
if (!base::StringToInt64(tokens[0], &key_name_as_number)) {
test_root_key.DeleteKey(key_name.c_str());
« no previous file with comments | « base/test/test_reg_util_win.h ('k') | base/test/test_simple_task_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698