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

Unified Diff: third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.h

Issue 1853743005: Oilpan: Remove WillBe types (part 13) (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/core/xmlhttprequest/XMLHttpRequest.h
diff --git a/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.h b/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.h
index dfaf9d4aacca3b59659b57fb6fcf739e6588bd24..13b6453ba91f28ee437644e5a716bc0a68e6a012 100644
--- a/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.h
+++ b/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.h
@@ -69,7 +69,7 @@ typedef int ExceptionCode;
class XMLHttpRequest final : public XMLHttpRequestEventTarget, private ThreadableLoaderClient, public DocumentParserClient, public ActiveScriptWrappable, public ActiveDOMObject {
DEFINE_WRAPPERTYPEINFO();
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(XMLHttpRequest);
+ USING_GARBAGE_COLLECTED_MIXIN(XMLHttpRequest);
public:
static XMLHttpRequest* create(ScriptState*);
static XMLHttpRequest* create(ExecutionContext*);
@@ -276,8 +276,8 @@ private:
OwnPtr<TextResourceDecoder> m_decoder;
ScriptString m_responseText;
- RefPtrWillBeMember<Document> m_responseDocument;
- RefPtrWillBeMember<DocumentParser> m_responseDocumentParser;
+ Member<Document> m_responseDocument;
+ Member<DocumentParser> m_responseDocumentParser;
RefPtr<SharedBuffer> m_binaryResponseBuilder;
long long m_lengthDownloadedToFile;

Powered by Google App Engine
This is Rietveld 408576698