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

Unified Diff: third_party/WebKit/Source/platform/text/BidiContext.h

Issue 2811453002: Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in platform/text (Closed)
Patch Set: fix Created 3 years, 8 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/text/BidiContext.h
diff --git a/third_party/WebKit/Source/platform/text/BidiContext.h b/third_party/WebKit/Source/platform/text/BidiContext.h
index a0d8e43ef31563f0d3f4691c2052f4523cba1d6a..e8ff16e7ed28614cf40ba4a9d45f77edda82de91 100644
--- a/third_party/WebKit/Source/platform/text/BidiContext.h
+++ b/third_party/WebKit/Source/platform/text/BidiContext.h
@@ -71,7 +71,7 @@ class PLATFORM_EXPORT BidiContext : public RefCounted<BidiContext> {
override_(override),
source_(source),
parent_(parent) {
- ASSERT(level <= kMaxLevel);
+ DCHECK(level <= kMaxLevel);
}
static PassRefPtr<BidiContext> CreateUncached(unsigned char level,
« no previous file with comments | « third_party/WebKit/Source/platform/text/BidiCharacterRun.h ('k') | third_party/WebKit/Source/platform/text/BidiContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698