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

Unified Diff: chrome/installer/gcapi/gcapi_reactivation_test.cc

Issue 1548153002: Switch to standard integer types in chrome/. (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
Index: chrome/installer/gcapi/gcapi_reactivation_test.cc
diff --git a/chrome/installer/gcapi/gcapi_reactivation_test.cc b/chrome/installer/gcapi/gcapi_reactivation_test.cc
index 34a1105732f3b00bca2432761cce538c6b2c866a..4bfd4b4ffb83ab975f5ce37d4eea64e1ce471b74 100644
--- a/chrome/installer/gcapi/gcapi_reactivation_test.cc
+++ b/chrome/installer/gcapi/gcapi_reactivation_test.cc
@@ -2,9 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include <stdint.h>
+
#include <string>
-#include "base/basictypes.h"
#include "base/strings/string_number_conversions.h"
#include "base/time/time.h"
#include "base/win/registry.h"
@@ -36,7 +37,7 @@ class GCAPIReactivationTest : public ::testing::Test {
google_update::kRegVersionField, L"1.2.3.4") == ERROR_SUCCESS);
}
- bool SetLastRunTime(HKEY hive, int64 last_run_time) {
+ bool SetLastRunTime(HKEY hive, int64_t last_run_time) {
return SetLastRunTimeString(hive, base::Int64ToString16(last_run_time));
}
« no previous file with comments | « chrome/installer/gcapi/gcapi_reactivation.cc ('k') | chrome/installer/gcapi/gcapi_test_registry_overrider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698