| Index: Source/core/editing/CreateLinkCommand.h
 | 
| diff --git a/Source/core/editing/CreateLinkCommand.h b/Source/core/editing/CreateLinkCommand.h
 | 
| index a1eaf814b17ef2cb1ced03290a7eb6419f3aeb89..0808f42a34f0320e3365abd6bb5759124cd40562 100644
 | 
| --- a/Source/core/editing/CreateLinkCommand.h
 | 
| +++ b/Source/core/editing/CreateLinkCommand.h
 | 
| @@ -32,9 +32,9 @@ namespace WebCore {
 | 
|  
 | 
|  class CreateLinkCommand FINAL : public CompositeEditCommand {
 | 
|  public:
 | 
| -    static PassRefPtr<CreateLinkCommand> create(Document& document, const String& linkURL)
 | 
| +    static PassRefPtrWillBeRawPtr<CreateLinkCommand> create(Document& document, const String& linkURL)
 | 
|      {
 | 
| -        return adoptRef(new CreateLinkCommand(document, linkURL));
 | 
| +        return adoptRefWillBeNoop(new CreateLinkCommand(document, linkURL));
 | 
|      }
 | 
|  
 | 
|  private:
 | 
| 
 |