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

Unified Diff: Source/core/editing/UnlinkCommand.h

Issue 299353004: Oilpan: move editing objects to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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: Source/core/editing/UnlinkCommand.h
diff --git a/Source/core/editing/UnlinkCommand.h b/Source/core/editing/UnlinkCommand.h
index aebc5abc4e170fb5b63fd6368ba84b3a7da0a0dd..692b6deba446d51654a2fce8beb9def9a1a091ee 100644
--- a/Source/core/editing/UnlinkCommand.h
+++ b/Source/core/editing/UnlinkCommand.h
@@ -32,9 +32,9 @@ namespace WebCore {
class UnlinkCommand FINAL : public CompositeEditCommand {
public:
- static PassRefPtr<UnlinkCommand> create(Document& document)
+ static PassRefPtrWillBeRawPtr<UnlinkCommand> create(Document& document)
{
- return adoptRef(new UnlinkCommand(document));
+ return adoptRefWillBeNoop(new UnlinkCommand(document));
}
private:

Powered by Google App Engine
This is Rietveld 408576698