| Index: third_party/WebKit/Source/core/page/PagePopupController.cpp
|
| diff --git a/third_party/WebKit/Source/core/page/PagePopupController.cpp b/third_party/WebKit/Source/core/page/PagePopupController.cpp
|
| index f87fece1b04b944b903a794ffc8f123c51f5b281..11f197cb726952f8ca2d3270ebbc14e4098e74af 100644
|
| --- a/third_party/WebKit/Source/core/page/PagePopupController.cpp
|
| +++ b/third_party/WebKit/Source/core/page/PagePopupController.cpp
|
| @@ -100,7 +100,7 @@ String PagePopupController::formatWeek(int year,
|
| return emptyString();
|
| DateComponents week;
|
| bool setWeekResult = week.setWeek(year, weekNumber);
|
| - ASSERT_UNUSED(setWeekResult, setWeekResult);
|
| + DCHECK(setWeekResult);
|
| String localizedWeek = m_popupClient->locale().formatDateTime(week);
|
| return m_popupClient->locale().queryString(
|
| WebLocalizedString::AXCalendarWeekDescription, localizedWeek,
|
|
|