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

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

Powered by Google App Engine
This is Rietveld 408576698