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 23 matching lines...) Expand all Loading... |
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 public: | 43 public: |
44 static PassRefPtr<TransitionEvent> create() | 44 static PassRefPtrWillBeRawPtr<TransitionEvent> create() |
45 { | 45 { |
46 return adoptRef(new TransitionEvent); | 46 return adoptRefCountedWillBeRefCountedGarbageCollected(new TransitionEve
nt); |
47 } | 47 } |
48 static PassRefPtr<TransitionEvent> create(const AtomicString& type, const St
ring& propertyName, double elapsedTime, const String& pseudoElement) | 48 static PassRefPtrWillBeRawPtr<TransitionEvent> create(const AtomicString& ty
pe, const String& propertyName, double elapsedTime, const String& pseudoElement) |
49 { | 49 { |
50 return adoptRef(new TransitionEvent(type, propertyName, elapsedTime, pse
udoElement)); | 50 return adoptRefCountedWillBeRefCountedGarbageCollected(new TransitionEve
nt(type, propertyName, elapsedTime, pseudoElement)); |
51 } | 51 } |
52 static PassRefPtr<TransitionEvent> create(const AtomicString& type, const Tr
ansitionEventInit& initializer) | 52 static PassRefPtrWillBeRawPtr<TransitionEvent> create(const AtomicString& ty
pe, const TransitionEventInit& initializer) |
53 { | 53 { |
54 return adoptRef(new TransitionEvent(type, initializer)); | 54 return adoptRefCountedWillBeRefCountedGarbageCollected(new TransitionEve
nt(type, initializer)); |
55 } | 55 } |
56 | 56 |
57 virtual ~TransitionEvent(); | 57 virtual ~TransitionEvent(); |
58 | 58 |
59 const String& propertyName() const; | 59 const String& propertyName() const; |
60 double elapsedTime() const; | 60 double elapsedTime() const; |
61 const String& pseudoElement() const; | 61 const String& pseudoElement() const; |
62 | 62 |
63 virtual const AtomicString& interfaceName() const OVERRIDE; | 63 virtual const AtomicString& interfaceName() const OVERRIDE; |
64 | 64 |
65 virtual void trace(Visitor*) OVERRIDE; | 65 virtual void trace(Visitor*) OVERRIDE; |
66 | 66 |
67 private: | 67 private: |
68 TransitionEvent(); | 68 TransitionEvent(); |
69 TransitionEvent(const AtomicString& type, const String& propertyName, double
elapsedTime, const String& pseudoElement); | 69 TransitionEvent(const AtomicString& type, const String& propertyName, double
elapsedTime, const String& pseudoElement); |
70 TransitionEvent(const AtomicString& type, const TransitionEventInit& initial
izer); | 70 TransitionEvent(const AtomicString& type, const TransitionEventInit& initial
izer); |
71 | 71 |
72 String m_propertyName; | 72 String m_propertyName; |
73 double m_elapsedTime; | 73 double m_elapsedTime; |
74 String m_pseudoElement; | 74 String m_pseudoElement; |
75 }; | 75 }; |
76 | 76 |
77 } // namespace WebCore | 77 } // namespace WebCore |
78 | 78 |
79 #endif // TransitionEvent_h | 79 #endif // TransitionEvent_h |
80 | 80 |
OLD | NEW |