commit | 720d4f346cee3fa9ea9c58b845550e7066a80ec2 | [log] [tgz] |
---|---|---|
author | tfarina <[email protected]> | Mon May 11 22:31:26 2015 |
committer | Commit bot <[email protected]> | Mon May 11 22:31:49 2015 |
tree | e452763cf49776c93a2779e8e08fc90b51690ee4 | |
parent | c16f8dcdc00218681934a1425f53c9badefbe01a [diff] [blame] |
sql: Remove basictypes.h includes. * Use the standard integer types from stdint.h instead. * Use macros.h for the DISALLOW_COPY_AND_ASSIGN macro. BUG=138542 TEST=sql_unittests [email protected] Review URL: https://codereview.chromium.org/1133053004 Cr-Commit-Position: refs/heads/master@{#329256}
diff --git a/sql/test/test_helpers.cc b/sql/test/test_helpers.cc index 72d42c6..361b336 100644 --- a/sql/test/test_helpers.cc +++ b/sql/test/test_helpers.cc
@@ -85,7 +85,7 @@ 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;