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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTextFormControlElement.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/html/HTMLTextFormControlElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLTextFormControlElement.cpp b/third_party/WebKit/Source/core/html/HTMLTextFormControlElement.cpp
index e06a4443358e3f0116c7443633c016991af96fd6..250cf08540ded41c7e852dc0b773ea43f2f0997b 100644
--- a/third_party/WebKit/Source/core/html/HTMLTextFormControlElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLTextFormControlElement.cpp
@@ -409,7 +409,7 @@ int HTMLTextFormControlElement::indexForVisiblePosition(const VisiblePosition& p
if (enclosingTextFormControl(indexPosition) != this)
return 0;
ASSERT(indexPosition.document());
- RefPtrWillBeRawPtr<Range> range = Range::create(*indexPosition.document());
+ RawPtr<Range> range = Range::create(*indexPosition.document());
range->setStart(innerEditorElement(), 0, ASSERT_NO_EXCEPTION);
range->setEnd(indexPosition.computeContainerNode(), indexPosition.offsetInContainerNode(), ASSERT_NO_EXCEPTION);
return TextIterator::rangeLength(range->startPosition(), range->endPosition());
@@ -505,7 +505,7 @@ static inline void setContainerAndOffsetForRange(Node* node, int offset, Node*&
}
}
-PassRefPtrWillBeRawPtr<Range> HTMLTextFormControlElement::selection() const
+RawPtr<Range> HTMLTextFormControlElement::selection() const
{
if (!layoutObject() || !isTextFormControl())
return nullptr;
@@ -594,7 +594,7 @@ void HTMLTextFormControlElement::selectionChanged(bool userTriggered)
void HTMLTextFormControlElement::scheduleSelectEvent()
{
- RefPtrWillBeRawPtr<Event> event = Event::createBubble(EventTypeNames::select);
+ RawPtr<Event> event = Event::createBubble(EventTypeNames::select);
event->setTarget(this);
document().enqueueUniqueAnimationFrameEvent(event.release());
}
@@ -620,7 +620,7 @@ bool HTMLTextFormControlElement::lastChangeWasUserEdit() const
return m_lastChangeWasUserEdit;
}
-PassRefPtrWillBeRawPtr<Node> HTMLTextFormControlElement::createPlaceholderBreakElement() const
+RawPtr<Node> HTMLTextFormControlElement::createPlaceholderBreakElement() const
{
return HTMLBRElement::create(document());
}
@@ -799,7 +799,7 @@ static Position innerNodePosition(const Position& innerPosition)
ASSERT(!innerPosition.isAfterAnchor());
HTMLElement* element = toHTMLElement(innerPosition.anchorNode());
ASSERT(element);
- RefPtrWillBeRawPtr<NodeList> childNodes = element->childNodes();
+ RawPtr<NodeList> childNodes = element->childNodes();
if (!childNodes->length())
return Position(element, 0);
@@ -829,7 +829,7 @@ static Position findWordBoundary(const HTMLElement* innerEditor, const Position&
{
StringBuilder concatTexts;
Vector<unsigned> lengthList;
- WillBeHeapVector<RawPtrWillBeMember<Text>> textList;
+ HeapVector<Member<Text>> textList;
if (startPosition.anchorNode()->isTextNode())
ASSERT(startPosition.isOffsetInAnchor());

Powered by Google App Engine
This is Rietveld 408576698