OLD | NEW |
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 |
(...skipping 14 matching lines...) Expand all Loading... |
25 | 25 |
26 #include "FetchInitiatorTypeNames.h" | 26 #include "FetchInitiatorTypeNames.h" |
27 #include "RuntimeEnabledFeatures.h" | 27 #include "RuntimeEnabledFeatures.h" |
28 #include "bindings/v8/ExceptionState.h" | 28 #include "bindings/v8/ExceptionState.h" |
29 #include "core/dom/ContextFeatures.h" | 29 #include "core/dom/ContextFeatures.h" |
30 #include "core/dom/DOMImplementation.h" | 30 #include "core/dom/DOMImplementation.h" |
31 #include "core/dom/ExceptionCode.h" | 31 #include "core/dom/ExceptionCode.h" |
32 #include "core/editing/markup.h" | 32 #include "core/editing/markup.h" |
33 #include "core/events/Event.h" | 33 #include "core/events/Event.h" |
34 #include "core/fetch/CrossOriginAccessControl.h" | 34 #include "core/fetch/CrossOriginAccessControl.h" |
| 35 #include "core/fetch/TextResourceDecoder.h" |
35 #include "core/fileapi/Blob.h" | 36 #include "core/fileapi/Blob.h" |
36 #include "core/fileapi/File.h" | 37 #include "core/fileapi/File.h" |
37 #include "core/fileapi/Stream.h" | 38 #include "core/fileapi/Stream.h" |
38 #include "core/frame/ContentSecurityPolicy.h" | 39 #include "core/frame/ContentSecurityPolicy.h" |
39 #include "core/html/DOMFormData.h" | 40 #include "core/html/DOMFormData.h" |
40 #include "core/html/HTMLDocument.h" | 41 #include "core/html/HTMLDocument.h" |
41 #include "core/html/parser/TextResourceDecoder.h" | |
42 #include "core/inspector/InspectorInstrumentation.h" | 42 #include "core/inspector/InspectorInstrumentation.h" |
43 #include "core/loader/ThreadableLoader.h" | 43 #include "core/loader/ThreadableLoader.h" |
44 #include "core/frame/Settings.h" | 44 #include "core/frame/Settings.h" |
45 #include "core/xml/XMLHttpRequestProgressEvent.h" | 45 #include "core/xml/XMLHttpRequestProgressEvent.h" |
46 #include "core/xml/XMLHttpRequestUpload.h" | 46 #include "core/xml/XMLHttpRequestUpload.h" |
47 #include "platform/Logging.h" | 47 #include "platform/Logging.h" |
48 #include "platform/SharedBuffer.h" | 48 #include "platform/SharedBuffer.h" |
49 #include "platform/blob/BlobData.h" | 49 #include "platform/blob/BlobData.h" |
50 #include "platform/network/HTTPParsers.h" | 50 #include "platform/network/HTTPParsers.h" |
51 #include "platform/network/ParsedContentType.h" | 51 #include "platform/network/ParsedContentType.h" |
(...skipping 1369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1421 { | 1421 { |
1422 return EventTargetNames::XMLHttpRequest; | 1422 return EventTargetNames::XMLHttpRequest; |
1423 } | 1423 } |
1424 | 1424 |
1425 ExecutionContext* XMLHttpRequest::executionContext() const | 1425 ExecutionContext* XMLHttpRequest::executionContext() const |
1426 { | 1426 { |
1427 return ActiveDOMObject::executionContext(); | 1427 return ActiveDOMObject::executionContext(); |
1428 } | 1428 } |
1429 | 1429 |
1430 } // namespace WebCore | 1430 } // namespace WebCore |
OLD | NEW |