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

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

Issue 2700123003: DO NOT COMMIT: Results of running old (current) clang-format on Blink (Closed)
Patch Set: Created 3 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 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.
11 * 11 *
12 * This library is distributed in the hope that it will be useful, 12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details. 15 * Lesser General Public License for more details.
16 * 16 *
17 * You should have received a copy of the GNU Lesser General Public 17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software 18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20 * MA 02110-1301 USA 20 * MA 02110-1301 USA
21 */ 21 */
22 22
23 #ifndef XMLHttpRequest_h 23 #ifndef XMLHttpRequest_h
24 #define XMLHttpRequest_h 24 #define XMLHttpRequest_h
25 25
26 #include <memory>
26 #include "bindings/core/v8/ActiveScriptWrappable.h" 27 #include "bindings/core/v8/ActiveScriptWrappable.h"
27 #include "bindings/core/v8/ScriptString.h" 28 #include "bindings/core/v8/ScriptString.h"
28 #include "bindings/core/v8/ScriptWrappable.h" 29 #include "bindings/core/v8/ScriptWrappable.h"
29 #include "bindings/core/v8/TraceWrapperMember.h" 30 #include "bindings/core/v8/TraceWrapperMember.h"
30 #include "core/dom/DocumentParserClient.h" 31 #include "core/dom/DocumentParserClient.h"
31 #include "core/dom/ExceptionCode.h" 32 #include "core/dom/ExceptionCode.h"
32 #include "core/dom/SuspendableObject.h" 33 #include "core/dom/SuspendableObject.h"
33 #include "core/loader/ThreadableLoaderClient.h" 34 #include "core/loader/ThreadableLoaderClient.h"
34 #include "core/xmlhttprequest/XMLHttpRequestEventTarget.h" 35 #include "core/xmlhttprequest/XMLHttpRequestEventTarget.h"
35 #include "core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h" 36 #include "core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h"
36 #include "platform/heap/Handle.h" 37 #include "platform/heap/Handle.h"
37 #include "platform/network/EncodedFormData.h" 38 #include "platform/network/EncodedFormData.h"
38 #include "platform/network/HTTPHeaderMap.h" 39 #include "platform/network/HTTPHeaderMap.h"
39 #include "platform/network/ResourceResponse.h" 40 #include "platform/network/ResourceResponse.h"
40 #include "platform/weborigin/KURL.h" 41 #include "platform/weborigin/KURL.h"
41 #include "platform/weborigin/SecurityOrigin.h" 42 #include "platform/weborigin/SecurityOrigin.h"
42 #include "wtf/Forward.h" 43 #include "wtf/Forward.h"
43 #include "wtf/PassRefPtr.h" 44 #include "wtf/PassRefPtr.h"
44 #include "wtf/RefPtr.h" 45 #include "wtf/RefPtr.h"
45 #include "wtf/text/AtomicString.h" 46 #include "wtf/text/AtomicString.h"
46 #include "wtf/text/WTFString.h" 47 #include "wtf/text/WTFString.h"
47 #include <memory>
48 48
49 namespace blink { 49 namespace blink {
50 50
51 class ArrayBufferOrArrayBufferViewOrBlobOrDocumentOrStringOrFormData; 51 class ArrayBufferOrArrayBufferViewOrBlobOrDocumentOrStringOrFormData;
52 class Blob; 52 class Blob;
53 class BlobDataHandle; 53 class BlobDataHandle;
54 class DOMArrayBuffer; 54 class DOMArrayBuffer;
55 class DOMArrayBufferView; 55 class DOMArrayBufferView;
56 class Document; 56 class Document;
57 class DocumentParser; 57 class DocumentParser;
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }; 352 };
353 353
354 std::ostream& operator<<(std::ostream&, const XMLHttpRequest*); 354 std::ostream& operator<<(std::ostream&, const XMLHttpRequest*);
355 355
356 } // namespace blink 356 } // namespace blink
357 357
358 #endif // XMLHttpRequest_h 358 #endif // XMLHttpRequest_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698