Chromium Code Reviews| Index: third_party/WebKit/Source/platform/fonts/FontCache.h |
| diff --git a/third_party/WebKit/Source/platform/fonts/FontCache.h b/third_party/WebKit/Source/platform/fonts/FontCache.h |
| index 811abf58a44f505476204325e8b9e5e27dab0a21..4d09801ac48ac37e89277a045baafecd22aac399 100644 |
| --- a/third_party/WebKit/Source/platform/fonts/FontCache.h |
| +++ b/third_party/WebKit/Source/platform/fonts/FontCache.h |
| @@ -227,7 +227,7 @@ class PLATFORM_EXPORT FontCache { |
| void disablePurging() { m_purgePreventCount++; } |
| void enablePurging() { |
| - ASSERT(m_purgePreventCount); |
| + DCHECK(m_purgePreventCount); |
| if (!--m_purgePreventCount) |
| purge(PurgeIfNeeded); |
| } |