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

Unified Diff: third_party/WebKit/Source/core/layout/api/LineLayoutRubyBase.h

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/core/layout/api/LineLayoutRubyBase.h
diff --git a/third_party/WebKit/Source/core/layout/api/LineLayoutRubyBase.h b/third_party/WebKit/Source/core/layout/api/LineLayoutRubyBase.h
index b8776f375aa0cfacc058b775a9cc21ae66e6ac2c..8131961d266681706625672a35ae95e3cc1d8b44 100644
--- a/third_party/WebKit/Source/core/layout/api/LineLayoutRubyBase.h
+++ b/third_party/WebKit/Source/core/layout/api/LineLayoutRubyBase.h
@@ -17,7 +17,7 @@ class LineLayoutRubyBase : public LineLayoutBlockFlow {
explicit LineLayoutRubyBase(const LineLayoutItem& item)
: LineLayoutBlockFlow(item) {
- ASSERT_WITH_SECURITY_IMPLICATION(!item || item.isRubyBase());
+ SECURITY_DCHECK(!item || item.isRubyBase());
}
explicit LineLayoutRubyBase(std::nullptr_t) : LineLayoutBlockFlow(nullptr) {}

Powered by Google App Engine
This is Rietveld 408576698