OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Julien Chaffraix <jchaffraix@webkit.org> | 2 * Copyright (C) 2010 Julien Chaffraix <jchaffraix@webkit.org> |
3 * All right reserved. | 3 * All right reserved. |
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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 RawPtrWillBeMember<EventTarget> m_target; | 98 RawPtrWillBeMember<EventTarget> m_target; |
99 | 99 |
100 // A slot for the deferred "progress" ProgressEvent. When multiple events | 100 // A slot for the deferred "progress" ProgressEvent. When multiple events |
101 // arrive, only the last one is stored and others are discarded. | 101 // arrive, only the last one is stored and others are discarded. |
102 const OwnPtr<DeferredEvent> m_deferred; | 102 const OwnPtr<DeferredEvent> m_deferred; |
103 }; | 103 }; |
104 | 104 |
105 } // namespace blink | 105 } // namespace blink |
106 | 106 |
107 #endif // XMLHttpRequestProgressEventThrottle_h | 107 #endif // XMLHttpRequestProgressEventThrottle_h |
OLD | NEW |