Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1141)

Unified Diff: third_party/WebKit/Source/web/WebFrameSerializerImpl.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
« no previous file with comments | « third_party/WebKit/Source/web/WebFrameImplBase.h ('k') | third_party/WebKit/Source/web/WebFrameWidgetImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698