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

Unified Diff: third_party/WebKit/Source/core/editing/iterators/TextIteratorTextState.cpp

Issue 2082503003: ASSERT -> DCHECK conversions in core/editing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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/iterators/TextIteratorTextState.cpp
diff --git a/third_party/WebKit/Source/core/editing/iterators/TextIteratorTextState.cpp b/third_party/WebKit/Source/core/editing/iterators/TextIteratorTextState.cpp
index 314701b473e613733a358fc4d5371c685d199eaf..40cf18ea6a243c4c87ea26c4ab5e83bf5c81bd92 100644
--- a/third_party/WebKit/Source/core/editing/iterators/TextIteratorTextState.cpp
+++ b/third_party/WebKit/Source/core/editing/iterators/TextIteratorTextState.cpp
@@ -179,7 +179,7 @@ void TextIteratorTextState::appendTextTo(ForwardsTextBuffer* output, unsigned po
output->pushRange(string().characters16() + offset, lengthToAppend);
return;
}
- ASSERT_NOT_REACHED(); // "We shouldn't be attempting to append text that doesn't exist.";
+ NOTREACHED(); // "We shouldn't be attempting to append text that doesn't exist.";
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698