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

Unified Diff: components/password_manager/core/browser/affiliation_database_unittest.cc

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more 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: components/password_manager/core/browser/affiliation_database_unittest.cc
diff --git a/components/password_manager/core/browser/affiliation_database_unittest.cc b/components/password_manager/core/browser/affiliation_database_unittest.cc
index 473439272a1b5833944f4d19a18cbc38007e26bc..920281f8de7b739b0c5f865967dde8689d6a1261 100644
--- a/components/password_manager/core/browser/affiliation_database_unittest.cc
+++ b/components/password_manager/core/browser/affiliation_database_unittest.cc
@@ -4,8 +4,11 @@
#include "components/password_manager/core/browser/affiliation_database.h"
+#include <stdint.h>
+
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
+#include "base/macros.h"
#include "sql/test/scoped_error_ignorer.h"
#include "sql/test/test_helpers.h"
#include "testing/gmock/include/gmock/gmock.h"
@@ -25,9 +28,9 @@ const char kTestFacetURI6[] = "https://zeta.example.com";
const char kTestAndroidFacetURI[] = "android://hash@com.example.android";
-const int64 kTestTimeUs1 = 1000000;
-const int64 kTestTimeUs2 = 2000000;
-const int64 kTestTimeUs3 = 3000000;
+const int64_t kTestTimeUs1 = 1000000;
+const int64_t kTestTimeUs2 = 2000000;
+const int64_t kTestTimeUs3 = 3000000;
void ExpectEquivalenceClassesAreEqual(
const AffiliatedFacetsWithUpdateTime& expectation,

Powered by Google App Engine
This is Rietveld 408576698