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

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

Issue 2748933003: XMLHttpRequest: return null upon failing responseArrayBuffer allocation. (Closed)
Patch Set: Created 3 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 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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 bool m_parsedResponse; 342 bool m_parsedResponse;
343 bool m_error; 343 bool m_error;
344 bool m_uploadEventsAllowed; 344 bool m_uploadEventsAllowed;
345 bool m_uploadComplete; 345 bool m_uploadComplete;
346 bool m_sameOriginRequest; 346 bool m_sameOriginRequest;
347 // True iff the ongoing resource loading is using the downloadToFile 347 // True iff the ongoing resource loading is using the downloadToFile
348 // option. 348 // option.
349 bool m_downloadingToFile; 349 bool m_downloadingToFile;
350 bool m_responseTextOverflow; 350 bool m_responseTextOverflow;
351 bool m_sendFlag; 351 bool m_sendFlag;
352 bool m_responseArrayBufferFailure;
352 }; 353 };
353 354
354 std::ostream& operator<<(std::ostream&, const XMLHttpRequest*); 355 std::ostream& operator<<(std::ostream&, const XMLHttpRequest*);
355 356
356 } // namespace blink 357 } // namespace blink
357 358
358 #endif // XMLHttpRequest_h 359 #endif // XMLHttpRequest_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/testing/Internals.cpp ('k') | third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698