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

Unified Diff: third_party/WebKit/Source/core/editing/commands/InsertLineBreakCommand.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/InsertLineBreakCommand.h
diff --git a/third_party/WebKit/Source/core/editing/commands/InsertLineBreakCommand.h b/third_party/WebKit/Source/core/editing/commands/InsertLineBreakCommand.h
index 16b32e0b1b274d3b9b8c184144000fd136448fa8..a995083f9defbb29285a29a2ec77320375e7d41a 100644
--- a/third_party/WebKit/Source/core/editing/commands/InsertLineBreakCommand.h
+++ b/third_party/WebKit/Source/core/editing/commands/InsertLineBreakCommand.h
@@ -32,9 +32,9 @@ namespace blink {
class InsertLineBreakCommand final : public CompositeEditCommand {
public:
- static PassRefPtrWillBeRawPtr<InsertLineBreakCommand> create(Document& document)
+ static RawPtr<InsertLineBreakCommand> create(Document& document)
{
- return adoptRefWillBeNoop(new InsertLineBreakCommand(document));
+ return new InsertLineBreakCommand(document);
}
private:

Powered by Google App Engine
This is Rietveld 408576698