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

Unified Diff: third_party/WebKit/Source/web/tests/sim/SimCompositor.cpp

Issue 1839643009: RELEASE_ASSERT -> CHECK and ASSERT -> DCHECK in web. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Return DCHECK_IS_ON checks. Created 4 years, 9 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/web/tests/sim/SimCompositor.cpp
diff --git a/third_party/WebKit/Source/web/tests/sim/SimCompositor.cpp b/third_party/WebKit/Source/web/tests/sim/SimCompositor.cpp
index ed9d2bc0ed5cb0ab05c420d3e32211f9bb751c1d..da2f26507c8574c671636f80723a159a35d4b245 100644
--- a/third_party/WebKit/Source/web/tests/sim/SimCompositor.cpp
+++ b/third_party/WebKit/Source/web/tests/sim/SimCompositor.cpp
@@ -77,9 +77,9 @@ void SimCompositor::setDeferCommits(bool deferCommits)
SimDisplayItemList SimCompositor::beginFrame()
{
- ASSERT(m_webViewImpl);
- ASSERT(!m_deferCommits);
- ASSERT(m_needsAnimate);
+ DCHECK(m_webViewImpl);
+ DCHECK(!m_deferCommits);
+ DCHECK(m_needsAnimate);
m_needsAnimate = false;
// Always advance the time as if the compositor was running at 60fps.
« no previous file with comments | « third_party/WebKit/Source/web/tests/WebViewTest.cpp ('k') | third_party/WebKit/Source/web/tests/sim/SimDisplayItemList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698