OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2013 Intel Corporation. All rights reserved. | 3 * Copyright (C) 2013 Intel Corporation. All rights 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 22 matching lines...) Expand all Loading... |
33 | 33 |
34 struct TransitionEventInit : public EventInit { | 34 struct TransitionEventInit : public EventInit { |
35 TransitionEventInit(); | 35 TransitionEventInit(); |
36 | 36 |
37 String propertyName; | 37 String propertyName; |
38 double elapsedTime; | 38 double elapsedTime; |
39 String pseudoElement; | 39 String pseudoElement; |
40 }; | 40 }; |
41 | 41 |
42 class TransitionEvent FINAL : public Event { | 42 class TransitionEvent FINAL : public Event { |
| 43 DEFINE_WRAPPERTYPEINFO(); |
43 public: | 44 public: |
44 static PassRefPtrWillBeRawPtr<TransitionEvent> create() | 45 static PassRefPtrWillBeRawPtr<TransitionEvent> create() |
45 { | 46 { |
46 return adoptRefWillBeNoop(new TransitionEvent); | 47 return adoptRefWillBeNoop(new TransitionEvent); |
47 } | 48 } |
48 static PassRefPtrWillBeRawPtr<TransitionEvent> create(const AtomicString& ty
pe, const String& propertyName, double elapsedTime, const String& pseudoElement) | 49 static PassRefPtrWillBeRawPtr<TransitionEvent> create(const AtomicString& ty
pe, const String& propertyName, double elapsedTime, const String& pseudoElement) |
49 { | 50 { |
50 return adoptRefWillBeNoop(new TransitionEvent(type, propertyName, elapse
dTime, pseudoElement)); | 51 return adoptRefWillBeNoop(new TransitionEvent(type, propertyName, elapse
dTime, pseudoElement)); |
51 } | 52 } |
52 static PassRefPtrWillBeRawPtr<TransitionEvent> create(const AtomicString& ty
pe, const TransitionEventInit& initializer) | 53 static PassRefPtrWillBeRawPtr<TransitionEvent> create(const AtomicString& ty
pe, const TransitionEventInit& initializer) |
(...skipping 17 matching lines...) Expand all Loading... |
70 TransitionEvent(const AtomicString& type, const TransitionEventInit& initial
izer); | 71 TransitionEvent(const AtomicString& type, const TransitionEventInit& initial
izer); |
71 | 72 |
72 String m_propertyName; | 73 String m_propertyName; |
73 double m_elapsedTime; | 74 double m_elapsedTime; |
74 String m_pseudoElement; | 75 String m_pseudoElement; |
75 }; | 76 }; |
76 | 77 |
77 } // namespace blink | 78 } // namespace blink |
78 | 79 |
79 #endif // TransitionEvent_h | 80 #endif // TransitionEvent_h |
80 | |
OLD | NEW |