| Index: third_party/WebKit/Source/core/xml/DOMParser.h
 | 
| diff --git a/third_party/WebKit/Source/core/xml/DOMParser.h b/third_party/WebKit/Source/core/xml/DOMParser.h
 | 
| index 34074da7f2e5361d6b0aa26984509e98063c8f45..76e571858ce9aea220dfd265fa860a1a0ac32f6b 100644
 | 
| --- a/third_party/WebKit/Source/core/xml/DOMParser.h
 | 
| +++ b/third_party/WebKit/Source/core/xml/DOMParser.h
 | 
| @@ -35,14 +35,14 @@ public:
 | 
|          return new DOMParser(document);
 | 
|      }
 | 
|  
 | 
| -    PassRefPtrWillBeRawPtr<Document> parseFromString(const String&, const String& type);
 | 
| +    RawPtr<Document> parseFromString(const String&, const String& type);
 | 
|  
 | 
|      DECLARE_TRACE();
 | 
|  
 | 
|  private:
 | 
|      explicit DOMParser(Document&);
 | 
|  
 | 
| -    WeakPtrWillBeWeakMember<Document> m_contextDocument;
 | 
| +    WeakMember<Document> m_contextDocument;
 | 
|  };
 | 
|  
 | 
|  } // namespace blink
 | 
| 
 |