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

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

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/core/editing/iterators/TextIterator.h
diff --git a/third_party/WebKit/Source/core/editing/iterators/TextIterator.h b/third_party/WebKit/Source/core/editing/iterators/TextIterator.h
index 29eebff624dd89683221bbdd48b37bb30eb54526..5845bb3464dce3f15e1168721bdd949de44878e8 100644
--- a/third_party/WebKit/Source/core/editing/iterators/TextIterator.h
+++ b/third_party/WebKit/Source/core/editing/iterators/TextIterator.h
@@ -157,18 +157,18 @@ private:
// Current position, not necessarily of the text being returned, but position
// as we walk through the DOM tree.
- RawPtrWillBeMember<Node> m_node;
+ Member<Node> m_node;
int m_offset;
IterationProgress m_iterationProgress;
FullyClippedStateStackAlgorithm<Strategy> m_fullyClippedStack;
int m_shadowDepth;
// The range.
- RawPtrWillBeMember<Node> m_startContainer;
+ Member<Node> m_startContainer;
int m_startOffset;
- RawPtrWillBeMember<Node> m_endContainer;
+ Member<Node> m_endContainer;
int m_endOffset;
- RawPtrWillBeMember<Node> m_pastEndNode;
+ Member<Node> m_pastEndNode;
// Used when there is still some pending text from the current node; when these
// are false and 0, we go back to normal iterating.
@@ -181,7 +181,7 @@ private:
LayoutText* m_firstLetterText;
// Used to do the whitespace collapsing logic.
- RawPtrWillBeMember<Text> m_lastTextNode;
+ Member<Text> m_lastTextNode;
bool m_lastTextNodeEndedWithCollapsedSpace;
// Used when text boxes are out of order (Hebrew/Arabic w/ embeded LTR text)

Powered by Google App Engine
This is Rietveld 408576698