OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2013 Samsung Electronics. All rights reserved. | 2 * Copyright (C) 2013 Samsung Electronics. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 29 matching lines...) Expand all Loading... | |
40 DEFINE_WRAPPERTYPEINFO(); | 40 DEFINE_WRAPPERTYPEINFO(); |
41 | 41 |
42 public: | 42 public: |
43 DEFINE_ATTRIBUTE_EVENT_LISTENER(abort); | 43 DEFINE_ATTRIBUTE_EVENT_LISTENER(abort); |
44 DEFINE_ATTRIBUTE_EVENT_LISTENER(error); | 44 DEFINE_ATTRIBUTE_EVENT_LISTENER(error); |
45 DEFINE_ATTRIBUTE_EVENT_LISTENER(load); | 45 DEFINE_ATTRIBUTE_EVENT_LISTENER(load); |
46 DEFINE_ATTRIBUTE_EVENT_LISTENER(loadend); | 46 DEFINE_ATTRIBUTE_EVENT_LISTENER(loadend); |
47 DEFINE_ATTRIBUTE_EVENT_LISTENER(loadstart); | 47 DEFINE_ATTRIBUTE_EVENT_LISTENER(loadstart); |
48 DEFINE_ATTRIBUTE_EVENT_LISTENER(progress); | 48 DEFINE_ATTRIBUTE_EVENT_LISTENER(progress); |
49 DEFINE_ATTRIBUTE_EVENT_LISTENER(timeout); | 49 DEFINE_ATTRIBUTE_EVENT_LISTENER(timeout); |
50 | |
51 DEFINE_INLINE_VIRTUAL_TRACE_WRAPPERS() { | |
Marcel Hlopko
2016/10/26 11:48:11
Also this shouldn't be needed...
Michael Lippautz
2016/10/26 11:53:48
Done.
| |
52 EventTargetWithInlineData::traceWrappers(visitor); | |
53 } | |
50 }; | 54 }; |
51 | 55 |
52 } // namespace blink | 56 } // namespace blink |
53 | 57 |
54 #endif // XMLHttpRequestEventTarget_h | 58 #endif // XMLHttpRequestEventTarget_h |
OLD | NEW |