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

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

Issue 1741073002: Rename enums/functions that collide in chromium style in core/layout/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@get-names-6
Patch Set: get-names-7: rebase Created 4 years, 10 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/TextIterator.cpp
diff --git a/third_party/WebKit/Source/core/editing/iterators/TextIterator.cpp b/third_party/WebKit/Source/core/editing/iterators/TextIterator.cpp
index 708b95eab321a6b052a4426af7d43d0977e2c802..ace7750914c7f47d507030a4dfe2830029b88603 100644
--- a/third_party/WebKit/Source/core/editing/iterators/TextIterator.cpp
+++ b/third_party/WebKit/Source/core/editing/iterators/TextIterator.cpp
@@ -570,11 +570,11 @@ void TextIteratorAlgorithm<Strategy>::handleTextBox()
// FirstLetter seem to have different ideas of where things can split.
// FirstLetter takes the punctuation + first letter, and BIDI will
// split out the punctuation and possibly reorder it.
- if (nextTextBox && !(nextTextBox->lineLayoutItem().isEqual(layoutObject))) {
+ if (nextTextBox && !(nextTextBox->getLineLayoutItem().isEqual(layoutObject))) {
m_textBox = 0;
return;
}
- ASSERT(!nextTextBox || nextTextBox->lineLayoutItem().isEqual(layoutObject));
+ ASSERT(!nextTextBox || nextTextBox->getLineLayoutItem().isEqual(layoutObject));
if (runStart < runEnd) {
// Handle either a single newline character (which becomes a space),
« no previous file with comments | « third_party/WebKit/Source/core/editing/VisibleUnitsTest.cpp ('k') | third_party/WebKit/Source/core/layout/FloatingObjects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698