| Index: Source/core/html/HTMLNameCollection.h
 | 
| diff --git a/Source/core/html/HTMLNameCollection.h b/Source/core/html/HTMLNameCollection.h
 | 
| index 978e77063796edef0596571dcf171499b7d3d877..824f505508a0d93cba5fafa536373b6a51c451bf 100644
 | 
| --- a/Source/core/html/HTMLNameCollection.h
 | 
| +++ b/Source/core/html/HTMLNameCollection.h
 | 
| @@ -33,9 +33,9 @@ class Document;
 | 
|  
 | 
|  class HTMLNameCollection FINAL : public HTMLCollection {
 | 
|  public:
 | 
| -    static PassRefPtr<HTMLNameCollection> create(ContainerNode& document, CollectionType type, const AtomicString& name)
 | 
| +    static PassRefPtrWillBeRawPtr<HTMLNameCollection> create(ContainerNode& document, CollectionType type, const AtomicString& name)
 | 
|      {
 | 
| -        return adoptRef(new HTMLNameCollection(document, type, name));
 | 
| +        return adoptRefWillBeNoop(new HTMLNameCollection(document, type, name));
 | 
|      }
 | 
|  
 | 
|      ~HTMLNameCollection();
 | 
| 
 |