| Index: third_party/WebKit/Source/core/editing/commands/CreateLinkCommand.cpp
 | 
| diff --git a/third_party/WebKit/Source/core/editing/commands/CreateLinkCommand.cpp b/third_party/WebKit/Source/core/editing/commands/CreateLinkCommand.cpp
 | 
| index 7fb7da3ef32d00f105eef6fa2edaa36fe0983fc3..83b1ad52feff44b07bc04edc63137082819e2a38 100644
 | 
| --- a/third_party/WebKit/Source/core/editing/commands/CreateLinkCommand.cpp
 | 
| +++ b/third_party/WebKit/Source/core/editing/commands/CreateLinkCommand.cpp
 | 
| @@ -41,7 +41,7 @@ void CreateLinkCommand::doApply(EditingState* editingState)
 | 
|      if (endingSelection().isNone())
 | 
|          return;
 | 
|  
 | 
| -    RefPtrWillBeRawPtr<HTMLAnchorElement> anchorElement = HTMLAnchorElement::create(document());
 | 
| +    RawPtr<HTMLAnchorElement> anchorElement = HTMLAnchorElement::create(document());
 | 
|      anchorElement->setHref(AtomicString(m_url));
 | 
|  
 | 
|      if (endingSelection().isRange()) {
 | 
| @@ -52,7 +52,7 @@ void CreateLinkCommand::doApply(EditingState* editingState)
 | 
|          insertNodeAt(anchorElement.get(), endingSelection().start(), editingState);
 | 
|          if (editingState->isAborted())
 | 
|              return;
 | 
| -        RefPtrWillBeRawPtr<Text> textNode = Text::create(document(), m_url);
 | 
| +        RawPtr<Text> textNode = Text::create(document(), m_url);
 | 
|          appendNode(textNode.get(), anchorElement.get(), editingState);
 | 
|          if (editingState->isAborted())
 | 
|              return;
 | 
| 
 |