Chromium Code Reviews| 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 5d135a39531068149aba74d3ce181252d4c649c9..39989917dcc072aa0e8cf8855a4e4f1a5a4de0ba 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> { |
| m_override(override), |
| m_source(source), |
| m_parent(parent) { |
| - ASSERT(level <= kMaxLevel); |
| + DCHECK(level <= kMaxLevel); |
|
tkent
2017/04/09 23:07:01
Use DCHECK_LE if it doesn't cause a compile failur
Hwanseung Lee
2017/04/11 03:29:38
it was cause a compile failure.
|
| } |
| static PassRefPtr<BidiContext> createUncached(unsigned char level, |