| Index: chrome/browser/android/ntp/content_suggestions_notification_helper.cc
|
| diff --git a/chrome/browser/android/ntp/content_suggestions_notification_helper.cc b/chrome/browser/android/ntp/content_suggestions_notification_helper.cc
|
| index fe1e5b10220b8588df45d301e08e9c7a6cd67cc9..4b2c0825fb5c359f08fade8cc2877b9cd0d37577 100644
|
| --- a/chrome/browser/android/ntp/content_suggestions_notification_helper.cc
|
| +++ b/chrome/browser/android/ntp/content_suggestions_notification_helper.cc
|
| @@ -52,9 +52,9 @@ bool ContentSuggestionsNotificationHelper::SendNotification(
|
| if (skimage.empty())
|
| return false;
|
|
|
| - jint timeout_at_millis = timeout_at.ToJavaTime();
|
| + jlong timeout_at_millis = timeout_at.ToJavaTime();
|
| if (timeout_at == base::Time::Max()) {
|
| - timeout_at_millis = std::numeric_limits<jint>::max();
|
| + timeout_at_millis = std::numeric_limits<jlong>::max();
|
| }
|
|
|
| if (Java_ContentSuggestionsNotificationHelper_showNotification(
|
|
|