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

Side by Side Diff: third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.h

Issue 2181243002: Move ThreadableLoader to Oilpan heap (2/3) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@onheap-bridge-peer-in-worker-threadable-loader
Patch Set: fix Created 4 years, 4 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2003, 2006, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2003, 2006, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2005, 2006 Alexey Proskuryakov <ap@nypop.com> 3 * Copyright (C) 2005, 2006 Alexey Proskuryakov <ap@nypop.com>
4 * Copyright (C) 2011 Google Inc. All rights reserved. 4 * Copyright (C) 2011 Google Inc. All rights reserved.
5 * Copyright (C) 2012 Intel Corporation 5 * Copyright (C) 2012 Intel Corporation
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public 8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 KURL m_url; 258 KURL m_url;
259 AtomicString m_method; 259 AtomicString m_method;
260 HTTPHeaderMap m_requestHeaders; 260 HTTPHeaderMap m_requestHeaders;
261 // Not converted to ASCII lowercase. Must be lowered later or compared 261 // Not converted to ASCII lowercase. Must be lowered later or compared
262 // using case insensitive comparison functions if needed. 262 // using case insensitive comparison functions if needed.
263 AtomicString m_mimeTypeOverride; 263 AtomicString m_mimeTypeOverride;
264 unsigned long m_timeoutMilliseconds; 264 unsigned long m_timeoutMilliseconds;
265 Member<Blob> m_responseBlob; 265 Member<Blob> m_responseBlob;
266 Member<Stream> m_responseLegacyStream; 266 Member<Stream> m_responseLegacyStream;
267 267
268 std::unique_ptr<ThreadableLoader> m_loader; 268 Member<ThreadableLoader> m_loader;
269 State m_state; 269 State m_state;
270 270
271 ResourceResponse m_response; 271 ResourceResponse m_response;
272 String m_finalResponseCharset; 272 String m_finalResponseCharset;
273 273
274 std::unique_ptr<TextResourceDecoder> m_decoder; 274 std::unique_ptr<TextResourceDecoder> m_decoder;
275 275
276 ScriptString m_responseText; 276 ScriptString m_responseText;
277 Member<Document> m_responseDocument; 277 Member<Document> m_responseDocument;
278 Member<DocumentParser> m_responseDocumentParser; 278 Member<DocumentParser> m_responseDocumentParser;
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 bool m_sameOriginRequest; 316 bool m_sameOriginRequest;
317 // True iff the ongoing resource loading is using the downloadToFile 317 // True iff the ongoing resource loading is using the downloadToFile
318 // option. 318 // option.
319 bool m_downloadingToFile; 319 bool m_downloadingToFile;
320 bool m_responseTextOverflow; 320 bool m_responseTextOverflow;
321 }; 321 };
322 322
323 } // namespace blink 323 } // namespace blink
324 324
325 #endif // XMLHttpRequest_h 325 #endif // XMLHttpRequest_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698