| 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 1852 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1863 XMLHttpRequestEventTarget::trace(visitor); | 1863 XMLHttpRequestEventTarget::trace(visitor); |
| 1864 DocumentParserClient::trace(visitor); | 1864 DocumentParserClient::trace(visitor); |
| 1865 ActiveDOMObject::trace(visitor); | 1865 ActiveDOMObject::trace(visitor); |
| 1866 } | 1866 } |
| 1867 | 1867 |
| 1868 DEFINE_TRACE_WRAPPERS(XMLHttpRequest) { | 1868 DEFINE_TRACE_WRAPPERS(XMLHttpRequest) { |
| 1869 visitor->traceWrappers(m_responseBlob); | 1869 visitor->traceWrappers(m_responseBlob); |
| 1870 visitor->traceWrappers(m_responseLegacyStream); | 1870 visitor->traceWrappers(m_responseLegacyStream); |
| 1871 visitor->traceWrappers(m_responseDocument); | 1871 visitor->traceWrappers(m_responseDocument); |
| 1872 visitor->traceWrappers(m_responseArrayBuffer); | 1872 visitor->traceWrappers(m_responseArrayBuffer); |
| 1873 XMLHttpRequestEventTarget::traceWrappers(visitor); |
| 1873 } | 1874 } |
| 1874 | 1875 |
| 1875 std::ostream& operator<<(std::ostream& ostream, const XMLHttpRequest* xhr) { | 1876 std::ostream& operator<<(std::ostream& ostream, const XMLHttpRequest* xhr) { |
| 1876 return ostream << "XMLHttpRequest " << static_cast<const void*>(xhr); | 1877 return ostream << "XMLHttpRequest " << static_cast<const void*>(xhr); |
| 1877 } | 1878 } |
| 1878 | 1879 |
| 1879 } // namespace blink | 1880 } // namespace blink |
| OLD | NEW |