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

Unified Diff: third_party/WebKit/Source/core/editing/commands/EditingState.cpp

Issue 1878473002: ASSERT -> DCHECK in core/editing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Output info for some DCHECKs, add TODOs. Created 4 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/core/editing/commands/EditingState.cpp
diff --git a/third_party/WebKit/Source/core/editing/commands/EditingState.cpp b/third_party/WebKit/Source/core/editing/commands/EditingState.cpp
index f734beedae466d7880c9b70f287b5744954de63b..bb5215bcdb0e849012ee9b069db52508365ced8d 100644
--- a/third_party/WebKit/Source/core/editing/commands/EditingState.cpp
+++ b/third_party/WebKit/Source/core/editing/commands/EditingState.cpp
@@ -16,7 +16,7 @@ EditingState::~EditingState()
void EditingState::abort()
{
- ASSERT(!m_isAborted);
+ DCHECK(!m_isAborted);
m_isAborted = true;
}

Powered by Google App Engine
This is Rietveld 408576698