| Index: components/history/core/browser/android/android_urls_database.cc
|
| diff --git a/components/history/core/browser/android/android_urls_database.cc b/components/history/core/browser/android/android_urls_database.cc
|
| index 43238b92a1ee377f9cda5458a676ff74ae3f25c6..13727ff5dbbdf1a431e288f113e62692c3f71d31 100644
|
| --- a/components/history/core/browser/android/android_urls_database.cc
|
| +++ b/components/history/core/browser/android/android_urls_database.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "components/history/core/browser/android/android_urls_database.h"
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "base/logging.h"
|
| #include "sql/connection.h"
|
| #include "sql/statement.h"
|
| @@ -58,7 +60,7 @@ AndroidURLID AndroidURLsDatabase::AddAndroidURLRow(const std::string& raw_url,
|
| "INSERT INTO android_urls (raw_url, url_id) VALUES (?, ?)"));
|
|
|
| statement.BindString(0, raw_url);
|
| - statement.BindInt64(1, static_cast<int64>(url_id));
|
| + statement.BindInt64(1, static_cast<int64_t>(url_id));
|
|
|
| if (!statement.Run()) {
|
| LOG(ERROR) << GetDB().GetErrorMessage();
|
|
|