Index: third_party/WebKit/Source/platform/DateComponents.cpp |
diff --git a/third_party/WebKit/Source/platform/DateComponents.cpp b/third_party/WebKit/Source/platform/DateComponents.cpp |
index 945063ad540f536de225f07e22f19e47653400b7..5ffb9612626b747d50dbae2f2e9394d4ede13443 100644 |
--- a/third_party/WebKit/Source/platform/DateComponents.cpp |
+++ b/third_party/WebKit/Source/platform/DateComponents.cpp |
@@ -664,7 +664,7 @@ double DateComponents::MillisecondsSinceEpoch() const { |
case kInvalid: |
break; |
} |
- ASSERT_NOT_REACHED(); |
+ NOTREACHED(); |
return InvalidMilliseconds(); |
} |
@@ -683,7 +683,7 @@ String DateComponents::ToStringForTime(SecondFormat format) const { |
switch (effective_format) { |
default: |
- ASSERT_NOT_REACHED(); |
+ NOTREACHED(); |
// Fallback to None. |
case kNone: |
return String::Format("%02d:%02d", hour_, minute_); |
@@ -714,7 +714,7 @@ String DateComponents::ToString(SecondFormat format) const { |
case kInvalid: |
break; |
} |
- ASSERT_NOT_REACHED(); |
+ NOTREACHED(); |
return String("(Invalid DateComponents)"); |
} |