| Index: third_party/WebKit/Source/web/WebFrameSerializerImpl.h
|
| diff --git a/third_party/WebKit/Source/web/WebFrameSerializerImpl.h b/third_party/WebKit/Source/web/WebFrameSerializerImpl.h
|
| index e948769d7c0380ee62f217d385198a8ce4aee19d..160d4a82546f7a1cd0a7503b992d20d0204d72a9 100644
|
| --- a/third_party/WebKit/Source/web/WebFrameSerializerImpl.h
|
| +++ b/third_party/WebKit/Source/web/WebFrameSerializerImpl.h
|
| @@ -81,7 +81,7 @@ public:
|
|
|
| private:
|
| // Specified frame which need to be serialized;
|
| - RawPtrWillBeMember<WebLocalFrameImpl> m_specifiedWebLocalFrameImpl;
|
| + Member<WebLocalFrameImpl> m_specifiedWebLocalFrameImpl;
|
| // Pointer of WebFrameSerializerClient
|
| WebFrameSerializerClient* m_client;
|
| // Pointer of WebFrameSerializer::LinkRewritingDelegate
|
| @@ -100,12 +100,12 @@ private:
|
|
|
| const KURL& url;
|
| const WTF::TextEncoding& textEncoding;
|
| - RawPtrWillBeMember<Document> document;
|
| + Member<Document> document;
|
| bool isHTMLDocument; // document.isHTMLDocument()
|
| bool haveSeenDocType;
|
| bool haveAddedCharsetDeclaration;
|
| // This meta element need to be skipped when serializing DOM.
|
| - RawPtrWillBeMember<const Element> skipMetaElement;
|
| + Member<const Element> skipMetaElement;
|
| bool haveAddedXMLProcessingDirective;
|
| // Flag indicates whether we have added additional contents before end tag.
|
| // This flag will be re-assigned in each call of function
|
|
|