| Index: sql/connection.cc
|
| diff --git a/sql/connection.cc b/sql/connection.cc
|
| index ba799a90b215e1750d638c0ae4debefff93e7076..b91234bac3d27d5eaa2f73cdaf8e8e96ad77798b 100644
|
| --- a/sql/connection.cc
|
| +++ b/sql/connection.cc
|
| @@ -228,7 +228,7 @@ Connection::~Connection() {
|
|
|
| bool Connection::Open(const base::FilePath& path) {
|
| if (!histogram_tag_.empty()) {
|
| - int64 size_64 = 0;
|
| + int64_t size_64 = 0;
|
| if (base::GetFileSize(path, &size_64)) {
|
| size_t sample = static_cast<size_t>(size_64 / 1024);
|
| std::string full_histogram_name = "Sqlite.SizeKB." + histogram_tag_;
|
| @@ -835,7 +835,7 @@ bool Connection::DoesColumnExist(const char* table_name,
|
| return false;
|
| }
|
|
|
| -int64 Connection::GetLastInsertRowId() const {
|
| +int64_t Connection::GetLastInsertRowId() const {
|
| if (!db_) {
|
| DLOG_IF(FATAL, !poisoned_) << "Illegal use of connection without a db";
|
| return 0;
|
|
|