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

Unified Diff: third_party/WebKit/Source/core/editing/VisibleUnits.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/VisibleUnits.cpp
diff --git a/third_party/WebKit/Source/core/editing/VisibleUnits.cpp b/third_party/WebKit/Source/core/editing/VisibleUnits.cpp
index dd704fad3d84f0cd1aca4715a25a704ce4efe8c1..c88e627dbf6eacacf82d2d559d58738571d4e301 100644
--- a/third_party/WebKit/Source/core/editing/VisibleUnits.cpp
+++ b/third_party/WebKit/Source/core/editing/VisibleUnits.cpp
@@ -73,7 +73,7 @@ static PositionType canonicalizeCandidate(const PositionType& candidate)
{
if (candidate.isNull())
return PositionType();
- ASSERT(isVisuallyEquivalentCandidate(candidate));
+ DCHECK(isVisuallyEquivalentCandidate(candidate));
PositionType upstream = mostBackwardCaretPosition(candidate);
if (isVisuallyEquivalentCandidate(upstream))
return upstream;
@@ -103,7 +103,7 @@ static PositionType canonicalPosition(const PositionType& passedPosition)
if (position.isNull())
return PositionType();
- ASSERT(position.document());
+ DCHECK(position.document());
position.document()->updateLayoutIgnorePendingStylesheets();
Node* node = position.computeContainerNode();
@@ -725,7 +725,7 @@ static VisiblePositionTemplate<Strategy> previousBoundary(const VisiblePositionT
// what's available.
// TODO(xiaochengh): Do we have to search the whole string?
next = searchFunction(string.data(), string.size(), string.size() - suffixLength, DontHaveMoreContext, needMoreContext);
- ASSERT(!needMoreContext);
+ DCHECK(!needMoreContext);
}
if (!next)
@@ -819,7 +819,7 @@ static VisiblePositionTemplate<Strategy> nextBoundary(const VisiblePositionTempl
// available.
// TODO(xiaochengh): Do we still have to search the whole string?
next = searchFunction(string.data(), string.size(), prefixLength, DontHaveMoreContext, needMoreContext);
- ASSERT(!needMoreContext);
+ DCHECK(!needMoreContext);
}
if (it.atEnd() && next == string.size()) {
@@ -852,7 +852,7 @@ static VisiblePositionTemplate<Strategy> nextBoundary(const VisiblePositionTempl
static unsigned startWordBoundary(const UChar* characters, unsigned length, unsigned offset, BoundarySearchContextAvailability mayHaveMoreContext, bool& needMoreContext)
{
TRACE_EVENT0("blink", "startWordBoundary");
- ASSERT(offset);
+ DCHECK(offset);
if (mayHaveMoreContext && !startOfLastWordBoundaryContext(characters, offset)) {
needMoreContext = true;
return 0;
@@ -894,7 +894,7 @@ VisiblePositionInFlatTree startOfWord(const VisiblePositionInFlatTree& c, EWordS
static unsigned endWordBoundary(const UChar* characters, unsigned length, unsigned offset, BoundarySearchContextAvailability mayHaveMoreContext, bool& needMoreContext)
{
- ASSERT(offset <= length);
+ DCHECK_LE(offset, length);
if (mayHaveMoreContext && endOfFirstWordBoundaryContext(characters + offset, length - offset) == static_cast<int>(length - offset)) {
needMoreContext = true;
return length;
@@ -1282,7 +1282,7 @@ bool isLogicalEndOfLine(const VisiblePositionInFlatTree& p)
static inline LayoutPoint absoluteLineDirectionPointToLocalPointInBlock(RootInlineBox* root, LayoutUnit lineDirectionPoint)
{
- ASSERT(root);
+ DCHECK(root);
LineLayoutBlockFlow containingBlock = root->block();
FloatPoint absoluteBlockPoint = containingBlock.localToAbsolute(FloatPoint());
if (containingBlock.hasOverflowClip())
@@ -2216,13 +2216,13 @@ VisiblePosition visiblePositionForContentsPoint(const IntPoint& contentsPoint, L
// "(1)" are first-letter part and "ab" are remaining part.
LayoutObject* associatedLayoutObjectOf(const Node& node, int offsetInNode)
{
- ASSERT(offsetInNode >= 0);
+ DCHECK_GE(offsetInNode, 0);
LayoutObject* layoutObject = node.layoutObject();
if (!node.isTextNode() || !layoutObject || !toLayoutText(layoutObject)->isTextFragment())
return layoutObject;
LayoutTextFragment* layoutTextFragment = toLayoutTextFragment(layoutObject);
if (!layoutTextFragment->isRemainingTextLayoutObject()) {
- ASSERT(static_cast<unsigned>(offsetInNode) <= layoutTextFragment->start() + layoutTextFragment->fragmentLength());
+ DCHECK_LE(static_cast<unsigned>(offsetInNode), layoutTextFragment->start() + layoutTextFragment->fragmentLength());
return layoutTextFragment;
}
if (layoutTextFragment->fragmentLength() && static_cast<unsigned>(offsetInNode) >= layoutTextFragment->start())
@@ -2230,7 +2230,7 @@ LayoutObject* associatedLayoutObjectOf(const Node& node, int offsetInNode)
LayoutObject* firstLetterLayoutObject = layoutTextFragment->firstLetterPseudoElement()->layoutObject();
// TODO(yosin): We're not sure when |firstLetterLayoutObject| has
// multiple child layout object.
- ASSERT(firstLetterLayoutObject->slowFirstChild() == firstLetterLayoutObject->slowLastChild());
+ DCHECK_EQ(firstLetterLayoutObject->slowFirstChild(), firstLetterLayoutObject->slowLastChild());
return firstLetterLayoutObject->slowFirstChild();
}
@@ -2425,12 +2425,12 @@ static PositionTemplate<Strategy> mostBackwardCaretPosition(const PositionTempla
// of a mix-up between offsets in the text in the DOM tree with text in the
// layout tree which can have a different length due to case transformation.
// Until we resolve that, disable this so we can run the layout tests!
- // ASSERT(currentOffset >= layoutObject->caretMaxOffset());
+ // DCHECK_GE(currentOffset, layoutObject->caretMaxOffset());
return PositionTemplate<Strategy>(currentNode, layoutObject->caretMaxOffset() + textStartOffset);
}
// Map offset in DOM node to offset in InlineBox.
- ASSERT(currentPos.offsetInLeafNode() >= static_cast<int>(textStartOffset));
+ DCHECK_GE(currentPos.offsetInLeafNode(), static_cast<int>(textStartOffset));
const unsigned textOffset = currentPos.offsetInLeafNode() - textStartOffset;
InlineTextBox* lastTextBox = textLayoutObject->lastTextBox();
for (InlineTextBox* box = textLayoutObject->firstTextBox(); box; box = box->nextTextBox()) {
@@ -2438,7 +2438,7 @@ static PositionTemplate<Strategy> mostBackwardCaretPosition(const PositionTempla
if (textLayoutObject->isTextFragment() && toLayoutTextFragment(layoutObject)->isRemainingTextLayoutObject()) {
// |currentPos| is at start of remaining text of
// |Text| node with :first-letter.
- ASSERT(currentPos.offsetInLeafNode() >= 1);
+ DCHECK_GE(currentPos.offsetInLeafNode(), 1);
LayoutObject* firstLetterLayoutObject = toLayoutTextFragment(layoutObject)->firstLetterPseudoElement()->layoutObject();
if (firstLetterLayoutObject && firstLetterLayoutObject->style()->visibility() == VISIBLE)
return currentPos.computePosition();
@@ -2567,12 +2567,12 @@ PositionTemplate<Strategy> mostForwardCaretPosition(const PositionTemplate<Strat
LayoutText* const textLayoutObject = toLayoutText(layoutObject);
const unsigned textStartOffset = textLayoutObject->textStartOffset();
if (currentNode != startNode) {
- ASSERT(currentPos.atStartOfNode());
+ DCHECK(currentPos.atStartOfNode());
return PositionTemplate<Strategy>(currentNode, layoutObject->caretMinOffset() + textStartOffset);
}
// Map offset in DOM node to offset in InlineBox.
- ASSERT(currentPos.offsetInLeafNode() >= static_cast<int>(textStartOffset));
+ DCHECK_GE(currentPos.offsetInLeafNode(), static_cast<int>(textStartOffset));
const unsigned textOffset = currentPos.offsetInLeafNode() - textStartOffset;
InlineTextBox* lastTextBox = textLayoutObject->lastTextBox();
for (InlineTextBox* box = textLayoutObject->firstTextBox(); box; box = box->nextTextBox()) {
@@ -2765,7 +2765,7 @@ static VisiblePositionTemplate<Strategy> skipToEndOfEditingBoundary(const Visibl
// That must mean that |pos| is not editable. Return the next position after
// |pos| that is in the same editable region as this position
- ASSERT(highestRoot);
+ DCHECK(highestRoot);
return firstEditableVisiblePositionAfterPositionInRoot(pos.deepEquivalent(), *highestRoot);
}
@@ -2881,7 +2881,7 @@ static PositionTemplate<Strategy> leftVisuallyDistinctCandidate(const VisiblePos
continue;
}
- ASSERT(offset == box->caretLeftmostOffset());
+ DCHECK_EQ(offset, box->caretLeftmostOffset());
unsigned char level = box->bidiLevel();
InlineBox* prevBox = box->prevLeafChild();
@@ -2964,7 +2964,7 @@ static PositionTemplate<Strategy> leftVisuallyDistinctCandidate(const VisiblePos
if ((isVisuallyEquivalentCandidate(p) && mostForwardCaretPosition(p) != downstreamStart) || p.atStartOfTree() || p.atEndOfTree())
return p;
- ASSERT(p != deepPosition);
+ DCHECK_NE(p, deepPosition);
}
}
@@ -2977,7 +2977,7 @@ VisiblePositionTemplate<Strategy> leftPositionOfAlgorithm(const VisiblePositionT
return VisiblePositionTemplate<Strategy>();
const VisiblePositionTemplate<Strategy> left = createVisiblePosition(pos);
- ASSERT(left.deepEquivalent() != visiblePosition.deepEquivalent());
+ DCHECK_NE(left.deepEquivalent(), visiblePosition.deepEquivalent());
return directionOfEnclosingBlock(left.deepEquivalent()) == LTR ? honorEditingBoundaryAtOrBefore(left, visiblePosition.deepEquivalent()) : honorEditingBoundaryAtOrAfter(left, visiblePosition.deepEquivalent());
}
@@ -3056,7 +3056,7 @@ static PositionTemplate<Strategy> rightVisuallyDistinctCandidate(const VisiblePo
continue;
}
- ASSERT(offset == box->caretRightmostOffset());
+ DCHECK_EQ(offset, box->caretRightmostOffset());
unsigned char level = box->bidiLevel();
InlineBox* nextBox = box->nextLeafChild();
@@ -3142,7 +3142,7 @@ static PositionTemplate<Strategy> rightVisuallyDistinctCandidate(const VisiblePo
if ((isVisuallyEquivalentCandidate(p) && mostForwardCaretPosition(p) != downstreamStart) || p.atStartOfTree() || p.atEndOfTree())
return p;
- ASSERT(p != deepPosition);
+ DCHECK_NE(p, deepPosition);
}
}
@@ -3155,7 +3155,7 @@ static VisiblePositionTemplate<Strategy> rightPositionOfAlgorithm(const VisibleP
return VisiblePositionTemplate<Strategy>();
const VisiblePositionTemplate<Strategy> right = createVisiblePosition(pos);
- ASSERT(right.deepEquivalent() != visiblePosition.deepEquivalent());
+ DCHECK_NE(right.deepEquivalent(), visiblePosition.deepEquivalent());
return directionOfEnclosingBlock(right.deepEquivalent()) == LTR ? honorEditingBoundaryAtOrAfter(right, visiblePosition.deepEquivalent()) : honorEditingBoundaryAtOrBefore(right, visiblePosition.deepEquivalent());
}
@@ -3217,7 +3217,7 @@ static VisiblePositionTemplate<Strategy> skipToStartOfEditingBoundary(const Visi
// That must mean that |pos| is not editable. Return the last position
// before |pos| that is in the same editable region as this position
- ASSERT(highestRoot);
+ DCHECK(highestRoot);
return lastEditableVisiblePositionBeforePositionInRoot(pos.deepEquivalent(), *highestRoot);
}
@@ -3235,7 +3235,7 @@ static VisiblePositionTemplate<Strategy> previousPositionOfAlgorithm(const Visib
// never yield another |TextAffinity::Upstream position| (unless line wrap
// length is 0!).
const VisiblePositionTemplate<Strategy> prev = createVisiblePosition(pos);
- ASSERT(prev.deepEquivalent() != visiblePosition.deepEquivalent());
+ DCHECK_NE(prev.deepEquivalent(), visiblePosition.deepEquivalent());
switch (rule) {
case CanCrossEditingBoundary:

Powered by Google App Engine
This is Rietveld 408576698