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

Unified Diff: third_party/WebKit/Source/core/editing/commands/ApplyBlockElementCommand.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/commands/ApplyBlockElementCommand.h
diff --git a/third_party/WebKit/Source/core/editing/commands/ApplyBlockElementCommand.h b/third_party/WebKit/Source/core/editing/commands/ApplyBlockElementCommand.h
index 7276b737c480c77806f9defe5cae788899335b62..fb1c2d19d14ced5470e8d1d1c991f0e11d5ac1c6 100644
--- a/third_party/WebKit/Source/core/editing/commands/ApplyBlockElementCommand.h
+++ b/third_party/WebKit/Source/core/editing/commands/ApplyBlockElementCommand.h
@@ -42,14 +42,14 @@ protected:
ApplyBlockElementCommand(Document&, const QualifiedName& tagName);
virtual void formatSelection(const VisiblePosition& startOfSelection, const VisiblePosition& endOfSelection, EditingState*);
- PassRefPtrWillBeRawPtr<HTMLElement> createBlockElement() const;
+ RawPtr<HTMLElement> createBlockElement() const;
const QualifiedName& tagName() const { return m_tagName; }
DECLARE_VIRTUAL_TRACE();
private:
void doApply(EditingState*) final;
- virtual void formatRange(const Position& start, const Position& end, const Position& endOfSelection, RefPtrWillBeRawPtr<HTMLElement>&, EditingState*) = 0;
+ virtual void formatRange(const Position& start, const Position& end, const Position& endOfSelection, RawPtr<HTMLElement>&, EditingState*) = 0;
void rangeForParagraphSplittingTextNodesIfNeeded(const VisiblePosition&, Position&, Position&);
VisiblePosition endOfNextParagrahSplittingTextNodesIfNeeded(VisiblePosition&, Position&, Position&);

Powered by Google App Engine
This is Rietveld 408576698