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

Unified Diff: sql/test/test_helpers.cc

Issue 1133053004: sql: Remove basictypes.h includes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: shess review Created 5 years, 7 months 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 | « sql/test/test_helpers.h ('k') | sql/transaction.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sql/test/test_helpers.cc
diff --git a/sql/test/test_helpers.cc b/sql/test/test_helpers.cc
index 72d42c6afc26a9a7c905bc2e780d1cbb1eb00fe1..361b336452e6cf074583551b237d268d0d249a28 100644
--- a/sql/test/test_helpers.cc
+++ b/sql/test/test_helpers.cc
@@ -85,7 +85,7 @@ bool CorruptSizeInHeader(const base::FilePath& db_path) {
if (1u != fread(header, sizeof(header), 1, file.get()))
return false;
- int64 db_size = 0;
+ int64_t db_size = 0;
if (!base::GetFileSize(db_path, &db_size))
return false;
« no previous file with comments | « sql/test/test_helpers.h ('k') | sql/transaction.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698