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

Unified Diff: third_party/WebKit/Source/platform/graphics/filters/FilterEffect.cpp

Issue 2458003002: Remove ASSERT_WITH_SECURITY_IMPLICATION. (Closed)
Patch Set: Minor formatting fix Created 4 years, 2 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/platform/graphics/filters/FilterEffect.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/filters/FilterEffect.cpp b/third_party/WebKit/Source/platform/graphics/filters/FilterEffect.cpp
index ef8da8c33258a986de74cc100e818f2313bdc5c6..9c5d31cf1150ac9a4aa6f13588b85a8bbd6b1855 100644
--- a/third_party/WebKit/Source/platform/graphics/filters/FilterEffect.cpp
+++ b/third_party/WebKit/Source/platform/graphics/filters/FilterEffect.cpp
@@ -84,7 +84,7 @@ FloatRect FilterEffect::mapRect(const FloatRect& rect) const {
}
FilterEffect* FilterEffect::inputEffect(unsigned number) const {
- ASSERT_WITH_SECURITY_IMPLICATION(number < m_inputEffects.size());
+ SECURITY_DCHECK(number < m_inputEffects.size());
return m_inputEffects.at(number).get();
}

Powered by Google App Engine
This is Rietveld 408576698