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 19 matching lines...) Expand all Loading... |
30 #include "core/dom/DOMArrayBuffer.h" | 30 #include "core/dom/DOMArrayBuffer.h" |
31 #include "core/dom/DOMArrayBufferView.h" | 31 #include "core/dom/DOMArrayBufferView.h" |
32 #include "core/dom/DOMException.h" | 32 #include "core/dom/DOMException.h" |
33 #include "core/dom/DOMImplementation.h" | 33 #include "core/dom/DOMImplementation.h" |
34 #include "core/dom/DOMTypedArray.h" | 34 #include "core/dom/DOMTypedArray.h" |
35 #include "core/dom/DocumentInit.h" | 35 #include "core/dom/DocumentInit.h" |
36 #include "core/dom/DocumentParser.h" | 36 #include "core/dom/DocumentParser.h" |
37 #include "core/dom/ExceptionCode.h" | 37 #include "core/dom/ExceptionCode.h" |
38 #include "core/dom/ExecutionContext.h" | 38 #include "core/dom/ExecutionContext.h" |
39 #include "core/dom/XMLDocument.h" | 39 #include "core/dom/XMLDocument.h" |
40 #include "core/editing/Serialization.h" | 40 #include "core/editing/serializers/Serialization.h" |
41 #include "core/events/Event.h" | 41 #include "core/events/Event.h" |
42 #include "core/fetch/CrossOriginAccessControl.h" | 42 #include "core/fetch/CrossOriginAccessControl.h" |
43 #include "core/fetch/FetchInitiatorTypeNames.h" | 43 #include "core/fetch/FetchInitiatorTypeNames.h" |
44 #include "core/fetch/FetchUtils.h" | 44 #include "core/fetch/FetchUtils.h" |
45 #include "core/fetch/ResourceLoaderOptions.h" | 45 #include "core/fetch/ResourceLoaderOptions.h" |
46 #include "core/fileapi/Blob.h" | 46 #include "core/fileapi/Blob.h" |
47 #include "core/fileapi/File.h" | 47 #include "core/fileapi/File.h" |
48 #include "core/fileapi/FileReaderLoader.h" | 48 #include "core/fileapi/FileReaderLoader.h" |
49 #include "core/fileapi/FileReaderLoaderClient.h" | 49 #include "core/fileapi/FileReaderLoaderClient.h" |
50 #include "core/frame/Settings.h" | 50 #include "core/frame/Settings.h" |
(...skipping 1642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1693 visitor->trace(m_responseDocumentParser); | 1693 visitor->trace(m_responseDocumentParser); |
1694 visitor->trace(m_progressEventThrottle); | 1694 visitor->trace(m_progressEventThrottle); |
1695 visitor->trace(m_upload); | 1695 visitor->trace(m_upload); |
1696 visitor->trace(m_blobLoader); | 1696 visitor->trace(m_blobLoader); |
1697 XMLHttpRequestEventTarget::trace(visitor); | 1697 XMLHttpRequestEventTarget::trace(visitor); |
1698 DocumentParserClient::trace(visitor); | 1698 DocumentParserClient::trace(visitor); |
1699 ActiveDOMObject::trace(visitor); | 1699 ActiveDOMObject::trace(visitor); |
1700 } | 1700 } |
1701 | 1701 |
1702 } // namespace blink | 1702 } // namespace blink |
OLD | NEW |