| Index: components/history/core/browser/history_types.cc
|
| diff --git a/components/history/core/browser/history_types.cc b/components/history/core/browser/history_types.cc
|
| index 60d424e324e35a9e04014b91fe520e3cd7c58aeb..732c8c23a30815df2c7d5b61bc1c740dcc3277f2 100644
|
| --- a/components/history/core/browser/history_types.cc
|
| +++ b/components/history/core/browser/history_types.cc
|
| @@ -164,13 +164,13 @@ void QueryOptions::SetRecentDayRange(int days_ago) {
|
| begin_time = end_time - base::TimeDelta::FromDays(days_ago);
|
| }
|
|
|
| -int64 QueryOptions::EffectiveBeginTime() const {
|
| +int64_t QueryOptions::EffectiveBeginTime() const {
|
| return begin_time.ToInternalValue();
|
| }
|
|
|
| -int64 QueryOptions::EffectiveEndTime() const {
|
| - return end_time.is_null() ?
|
| - std::numeric_limits<int64>::max() : end_time.ToInternalValue();
|
| +int64_t QueryOptions::EffectiveEndTime() const {
|
| + return end_time.is_null() ? std::numeric_limits<int64_t>::max()
|
| + : end_time.ToInternalValue();
|
| }
|
|
|
| int QueryOptions::EffectiveMaxCount() const {
|
|
|