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

Unified Diff: third_party/WebKit/Source/core/editing/iterators/SimplifiedBackwardsTextIterator.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/SimplifiedBackwardsTextIterator.h
diff --git a/third_party/WebKit/Source/core/editing/iterators/SimplifiedBackwardsTextIterator.h b/third_party/WebKit/Source/core/editing/iterators/SimplifiedBackwardsTextIterator.h
index 9102bb64934ed45ed7b71d3a3d37567a15edd6b7..3157fa2adfb728444c6350e74d17f60b5c5117ec 100644
--- a/third_party/WebKit/Source/core/editing/iterators/SimplifiedBackwardsTextIterator.h
+++ b/third_party/WebKit/Source/core/editing/iterators/SimplifiedBackwardsTextIterator.h
@@ -91,21 +91,21 @@ 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;
bool m_handledNode;
bool m_handledChildren;
FullyClippedStateStackAlgorithm<Strategy> m_fullyClippedStack;
// End of the range.
- RawPtrWillBeMember<Node> m_startNode;
+ Member<Node> m_startNode;
int m_startOffset;
// Start of the range.
- RawPtrWillBeMember<Node> m_endNode;
+ Member<Node> m_endNode;
int m_endOffset;
// The current text and its position, in the form to be returned from the iterator.
- RawPtrWillBeMember<Node> m_positionNode;
+ Member<Node> m_positionNode;
int m_positionStartOffset;
int m_positionEndOffset;

Powered by Google App Engine
This is Rietveld 408576698