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 1391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1402 return EventTargetNames::XMLHttpRequest; | 1402 return EventTargetNames::XMLHttpRequest; |
1403 } | 1403 } |
1404 | 1404 |
1405 ExecutionContext* XMLHttpRequest::executionContext() const | 1405 ExecutionContext* XMLHttpRequest::executionContext() const |
1406 { | 1406 { |
1407 return ActiveDOMObject::executionContext(); | 1407 return ActiveDOMObject::executionContext(); |
1408 } | 1408 } |
1409 | 1409 |
1410 void XMLHttpRequest::trace(Visitor* visitor) | 1410 void XMLHttpRequest::trace(Visitor* visitor) |
1411 { | 1411 { |
1412 visitor->trace(m_upload); | |
haraken
2014/06/03 09:47:07
You're tracing twice :)
zerny-chromium
2014/06/03 10:11:05
Done.
| |
1412 visitor->trace(m_responseBlob); | 1413 visitor->trace(m_responseBlob); |
1413 visitor->trace(m_responseStream); | 1414 visitor->trace(m_responseStream); |
1414 visitor->trace(m_responseDocument); | 1415 visitor->trace(m_responseDocument); |
1415 visitor->trace(m_progressEventThrottle); | 1416 visitor->trace(m_progressEventThrottle); |
1416 visitor->trace(m_upload); | 1417 visitor->trace(m_upload); |
1417 XMLHttpRequestEventTarget::trace(visitor); | 1418 XMLHttpRequestEventTarget::trace(visitor); |
1418 } | 1419 } |
1419 | 1420 |
1420 } // namespace WebCore | 1421 } // namespace WebCore |
OLD | NEW |