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

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

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/CharacterIteratorTest.cpp
diff --git a/third_party/WebKit/Source/core/editing/iterators/CharacterIteratorTest.cpp b/third_party/WebKit/Source/core/editing/iterators/CharacterIteratorTest.cpp
index ad67277d5f1d7a0c96ac2603edd4a60dc19dec48..6829901d34342bf15949e257756b13a3386c2ba5 100644
--- a/third_party/WebKit/Source/core/editing/iterators/CharacterIteratorTest.cpp
+++ b/third_party/WebKit/Source/core/editing/iterators/CharacterIteratorTest.cpp
@@ -46,7 +46,7 @@ TEST_F(CharacterIteratorTest, SubrangeWithReplacedElements)
document().view()->updateAllLifecyclePhases();
Node* divNode = document().getElementById("div");
- RefPtrWillBeRawPtr<Range> entireRange = Range::create(document(), divNode, 0, divNode, 3);
+ RawPtr<Range> entireRange = Range::create(document(), divNode, 0, divNode, 3);
EphemeralRange result = calculateCharacterSubrange(EphemeralRange(entireRange.get()), 2, 3);
Node* textNode = divNode->lastChild();

Powered by Google App Engine
This is Rietveld 408576698