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

Side by Side Diff: Source/core/xml/XMLHttpRequest.cpp

Issue 339573006: Qualify the generated includes in core (part 7) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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
« no previous file with comments | « Source/core/xml/XMLErrors.cpp ('k') | Source/core/xml/XMLTreeViewer.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2006, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2004, 2006, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2005-2007 Alexey Proskuryakov <ap@webkit.org> 3 * Copyright (C) 2005-2007 Alexey Proskuryakov <ap@webkit.org>
4 * Copyright (C) 2007, 2008 Julien Chaffraix <jchaffraix@webkit.org> 4 * Copyright (C) 2007, 2008 Julien Chaffraix <jchaffraix@webkit.org>
5 * Copyright (C) 2008, 2011 Google Inc. All rights reserved. 5 * Copyright (C) 2008, 2011 Google Inc. All rights reserved.
6 * Copyright (C) 2012 Intel Corporation 6 * Copyright (C) 2012 Intel Corporation
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public 9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version. 11 * version 2 of the License, or (at your option) any later version.
12 * 12 *
13 * This library is distributed in the hope that it will be useful, 13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details. 16 * Lesser General Public License for more details.
17 * 17 *
18 * You should have received a copy of the GNU Lesser General Public 18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software 19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 U SA 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 U SA
21 */ 21 */
22 22
23 #include "config.h" 23 #include "config.h"
24 #include "core/xml/XMLHttpRequest.h" 24 #include "core/xml/XMLHttpRequest.h"
25 25
26 #include "FetchInitiatorTypeNames.h"
27 #include "RuntimeEnabledFeatures.h"
28 #include "bindings/v8/ExceptionState.h" 26 #include "bindings/v8/ExceptionState.h"
27 #include "core/FetchInitiatorTypeNames.h"
29 #include "core/dom/ContextFeatures.h" 28 #include "core/dom/ContextFeatures.h"
30 #include "core/dom/DOMImplementation.h" 29 #include "core/dom/DOMImplementation.h"
31 #include "core/dom/ExceptionCode.h" 30 #include "core/dom/ExceptionCode.h"
32 #include "core/dom/XMLDocument.h" 31 #include "core/dom/XMLDocument.h"
33 #include "core/editing/markup.h" 32 #include "core/editing/markup.h"
34 #include "core/events/Event.h" 33 #include "core/events/Event.h"
35 #include "core/fetch/CrossOriginAccessControl.h" 34 #include "core/fetch/CrossOriginAccessControl.h"
36 #include "core/fileapi/Blob.h" 35 #include "core/fileapi/Blob.h"
37 #include "core/fileapi/File.h" 36 #include "core/fileapi/File.h"
38 #include "core/fileapi/Stream.h" 37 #include "core/fileapi/Stream.h"
39 #include "core/frame/csp/ContentSecurityPolicy.h" 38 #include "core/frame/csp/ContentSecurityPolicy.h"
40 #include "core/html/DOMFormData.h" 39 #include "core/html/DOMFormData.h"
41 #include "core/html/HTMLDocument.h" 40 #include "core/html/HTMLDocument.h"
42 #include "core/html/parser/TextResourceDecoder.h" 41 #include "core/html/parser/TextResourceDecoder.h"
43 #include "core/inspector/InspectorInstrumentation.h" 42 #include "core/inspector/InspectorInstrumentation.h"
44 #include "core/inspector/InspectorTraceEvents.h" 43 #include "core/inspector/InspectorTraceEvents.h"
45 #include "core/loader/ThreadableLoader.h" 44 #include "core/loader/ThreadableLoader.h"
46 #include "core/frame/Settings.h" 45 #include "core/frame/Settings.h"
47 #include "core/xml/XMLHttpRequestProgressEvent.h" 46 #include "core/xml/XMLHttpRequestProgressEvent.h"
48 #include "core/xml/XMLHttpRequestUpload.h" 47 #include "core/xml/XMLHttpRequestUpload.h"
49 #include "platform/Logging.h" 48 #include "platform/Logging.h"
49 #include "platform/RuntimeEnabledFeatures.h"
50 #include "platform/SharedBuffer.h" 50 #include "platform/SharedBuffer.h"
51 #include "platform/blob/BlobData.h" 51 #include "platform/blob/BlobData.h"
52 #include "platform/network/HTTPParsers.h" 52 #include "platform/network/HTTPParsers.h"
53 #include "platform/network/ParsedContentType.h" 53 #include "platform/network/ParsedContentType.h"
54 #include "platform/network/ResourceError.h" 54 #include "platform/network/ResourceError.h"
55 #include "platform/network/ResourceRequest.h" 55 #include "platform/network/ResourceRequest.h"
56 #include "public/platform/Platform.h" 56 #include "public/platform/Platform.h"
57 #include "wtf/ArrayBuffer.h" 57 #include "wtf/ArrayBuffer.h"
58 #include "wtf/ArrayBufferView.h" 58 #include "wtf/ArrayBufferView.h"
59 #include "wtf/Assertions.h" 59 #include "wtf/Assertions.h"
(...skipping 1398 matching lines...) Expand 10 before | Expand all | Expand 10 after
1458 { 1458 {
1459 visitor->trace(m_responseBlob); 1459 visitor->trace(m_responseBlob);
1460 visitor->trace(m_responseStream); 1460 visitor->trace(m_responseStream);
1461 visitor->trace(m_responseDocument); 1461 visitor->trace(m_responseDocument);
1462 visitor->trace(m_progressEventThrottle); 1462 visitor->trace(m_progressEventThrottle);
1463 visitor->trace(m_upload); 1463 visitor->trace(m_upload);
1464 XMLHttpRequestEventTarget::trace(visitor); 1464 XMLHttpRequestEventTarget::trace(visitor);
1465 } 1465 }
1466 1466
1467 } // namespace WebCore 1467 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/xml/XMLErrors.cpp ('k') | Source/core/xml/XMLTreeViewer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698