Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Unified Diff: third_party/WebKit/Source/core/animation/ImagePropertyFunctions.h

Issue 2109333002: Replace ASSERT_NOT_REACHED with NOTREACHED (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/animation/ImagePropertyFunctions.h
diff --git a/third_party/WebKit/Source/core/animation/ImagePropertyFunctions.h b/third_party/WebKit/Source/core/animation/ImagePropertyFunctions.h
index 5083017a98919a38e5d5a81b7adc4dde833adc18..0d00a8a005b1bc7a66d76e558fa9a01a9d8fc767 100644
--- a/third_party/WebKit/Source/core/animation/ImagePropertyFunctions.h
+++ b/third_party/WebKit/Source/core/animation/ImagePropertyFunctions.h
@@ -24,7 +24,7 @@ public:
case CSSPropertyWebkitMaskBoxImageSource:
return style.maskBoxImageSource();
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return nullptr;
}
}
@@ -42,7 +42,7 @@ public:
style.setMaskBoxImageSource(image);
break;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
}
};

Powered by Google App Engine
This is Rietveld 408576698