OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Julien Chaffraix <jchaffraix@webkit.org> All right reserv
ed. | 2 * Copyright (C) 2010 Julien Chaffraix <jchaffraix@webkit.org> All right reserv
ed. |
3 * Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies) | 3 * Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies) |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 // could insert new active DOM objects to the list. | 214 // could insert new active DOM objects to the list. |
215 // m_deferEvents is kept true until all deferred events have been dispatched
. | 215 // m_deferEvents is kept true until all deferred events have been dispatched
. |
216 m_dispatchDeferredEventsTimer.startOneShot(0, FROM_HERE); | 216 m_dispatchDeferredEventsTimer.startOneShot(0, FROM_HERE); |
217 } | 217 } |
218 | 218 |
219 void XMLHttpRequestProgressEventThrottle::trace(Visitor* visitor) | 219 void XMLHttpRequestProgressEventThrottle::trace(Visitor* visitor) |
220 { | 220 { |
221 visitor->trace(m_target); | 221 visitor->trace(m_target); |
222 visitor->trace(m_deferredProgressEvent); | 222 visitor->trace(m_deferredProgressEvent); |
223 visitor->trace(m_deferredEvents); | 223 visitor->trace(m_deferredEvents); |
| 224 TimerBase::trace(visitor); |
224 } | 225 } |
225 | 226 |
226 } // namespace blink | 227 } // namespace blink |
OLD | NEW |