| 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 15 matching lines...) Expand all Loading... |
| 26 #include "FetchInitiatorTypeNames.h" | 26 #include "FetchInitiatorTypeNames.h" |
| 27 #include "bindings/v8/ExceptionMessages.h" | 27 #include "bindings/v8/ExceptionMessages.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/Event.h" | 31 #include "core/dom/Event.h" |
| 32 #include "core/dom/EventListener.h" | 32 #include "core/dom/EventListener.h" |
| 33 #include "core/dom/EventNames.h" | 33 #include "core/dom/EventNames.h" |
| 34 #include "core/dom/ExceptionCode.h" | 34 #include "core/dom/ExceptionCode.h" |
| 35 #include "core/editing/markup.h" | 35 #include "core/editing/markup.h" |
| 36 #include "core/fetch/TextResourceDecoder.h" |
| 36 #include "core/fileapi/Blob.h" | 37 #include "core/fileapi/Blob.h" |
| 37 #include "core/fileapi/File.h" | 38 #include "core/fileapi/File.h" |
| 38 #include "core/html/DOMFormData.h" | 39 #include "core/html/DOMFormData.h" |
| 39 #include "core/html/HTMLDocument.h" | 40 #include "core/html/HTMLDocument.h" |
| 40 #include "core/inspector/InspectorInstrumentation.h" | 41 #include "core/inspector/InspectorInstrumentation.h" |
| 41 #include "core/loader/CrossOriginAccessControl.h" | 42 #include "core/loader/CrossOriginAccessControl.h" |
| 42 #include "core/loader/TextResourceDecoder.h" | |
| 43 #include "core/loader/ThreadableLoader.h" | 43 #include "core/loader/ThreadableLoader.h" |
| 44 #include "core/page/ContentSecurityPolicy.h" | 44 #include "core/page/ContentSecurityPolicy.h" |
| 45 #include "core/page/Settings.h" | 45 #include "core/page/Settings.h" |
| 46 #include "core/platform/HistogramSupport.h" | 46 #include "core/platform/HistogramSupport.h" |
| 47 #include "core/platform/SharedBuffer.h" | 47 #include "core/platform/SharedBuffer.h" |
| 48 #include "core/platform/network/BlobData.h" | 48 #include "core/platform/network/BlobData.h" |
| 49 #include "core/platform/network/HTTPParsers.h" | 49 #include "core/platform/network/HTTPParsers.h" |
| 50 #include "core/platform/network/ParsedContentType.h" | 50 #include "core/platform/network/ParsedContentType.h" |
| 51 #include "core/platform/network/ResourceError.h" | 51 #include "core/platform/network/ResourceError.h" |
| 52 #include "core/platform/network/ResourceRequest.h" | 52 #include "core/platform/network/ResourceRequest.h" |
| (...skipping 1204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1257 { | 1257 { |
| 1258 return eventNames().interfaceForXMLHttpRequest; | 1258 return eventNames().interfaceForXMLHttpRequest; |
| 1259 } | 1259 } |
| 1260 | 1260 |
| 1261 ScriptExecutionContext* XMLHttpRequest::scriptExecutionContext() const | 1261 ScriptExecutionContext* XMLHttpRequest::scriptExecutionContext() const |
| 1262 { | 1262 { |
| 1263 return ActiveDOMObject::scriptExecutionContext(); | 1263 return ActiveDOMObject::scriptExecutionContext(); |
| 1264 } | 1264 } |
| 1265 | 1265 |
| 1266 } // namespace WebCore | 1266 } // namespace WebCore |
| OLD | NEW |