| 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 17 matching lines...) Expand all Loading... |
| 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/fileapi/Blob.h" | 35 #include "core/fileapi/Blob.h" |
| 36 #include "core/fileapi/File.h" | 36 #include "core/fileapi/File.h" |
| 37 #include "core/fileapi/Stream.h" | 37 #include "core/fileapi/Stream.h" |
| 38 #include "core/frame/ContentSecurityPolicy.h" | 38 #include "core/frame/csp/ContentSecurityPolicy.h" |
| 39 #include "core/html/DOMFormData.h" | 39 #include "core/html/DOMFormData.h" |
| 40 #include "core/html/HTMLDocument.h" | 40 #include "core/html/HTMLDocument.h" |
| 41 #include "core/html/parser/TextResourceDecoder.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" |
| (...skipping 1379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1428 return ActiveDOMObject::executionContext(); | 1428 return ActiveDOMObject::executionContext(); |
| 1429 } | 1429 } |
| 1430 | 1430 |
| 1431 void XMLHttpRequest::trace(Visitor* visitor) | 1431 void XMLHttpRequest::trace(Visitor* visitor) |
| 1432 { | 1432 { |
| 1433 visitor->trace(m_responseBlob); | 1433 visitor->trace(m_responseBlob); |
| 1434 visitor->trace(m_responseStream); | 1434 visitor->trace(m_responseStream); |
| 1435 } | 1435 } |
| 1436 | 1436 |
| 1437 } // namespace WebCore | 1437 } // namespace WebCore |
| OLD | NEW |