| Index: components/ntp_snippets/remote/request_throttler.cc
|
| diff --git a/components/ntp_snippets/remote/request_throttler.cc b/components/ntp_snippets/remote/request_throttler.cc
|
| index 8f932ab6341d8172c07d5282f80ba783a27ee609..f1b06bd428fea5b39b3ccb6539346828e60f9fe4 100644
|
| --- a/components/ntp_snippets/remote/request_throttler.cc
|
| +++ b/components/ntp_snippets/remote/request_throttler.cc
|
| @@ -153,7 +153,7 @@ bool RequestThrottler::DemandQuotaForRequest(bool interactive_request) {
|
|
|
| void RequestThrottler::ResetCounterIfDayChanged() {
|
| // Get the date, "concatenated" into an int in "YYYYMMDD" format.
|
| - base::Time::Exploded now_exploded;
|
| + base::Time::Exploded now_exploded{};
|
| base::Time::Now().LocalExplode(&now_exploded);
|
| int now_day = 10000 * now_exploded.year + 100 * now_exploded.month +
|
| now_exploded.day_of_month;
|
|
|