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

Unified Diff: third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.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, 10 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 60c51e58e7955f4f0d1fe560eb959ebca697477e..d236ff2a808fd66c82d979e035485f814ae1a4ad 100644
--- a/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.h
+++ b/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.h
@@ -68,7 +68,7 @@ typedef int ExceptionCode;
class XMLHttpRequest final : public XMLHttpRequestEventTarget, private ThreadableLoaderClient, public DocumentParserClient, 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*);
@@ -273,8 +273,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