| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 return adoptRef(new TransitionEvent(type, initializer)); | 54 return adoptRef(new TransitionEvent(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 | 61 |
| 62 virtual const AtomicString& interfaceName() const override; | 62 virtual const AtomicString& interfaceName() const override; |
| 63 | 63 |
| 64 virtual void trace(Visitor*) override; | |
| 65 | |
| 66 private: | 64 private: |
| 67 TransitionEvent(); | 65 TransitionEvent(); |
| 68 TransitionEvent(const AtomicString& type, const String& propertyName, double
elapsedTime); | 66 TransitionEvent(const AtomicString& type, const String& propertyName, double
elapsedTime); |
| 69 TransitionEvent(const AtomicString& type, const TransitionEventInit& initial
izer); | 67 TransitionEvent(const AtomicString& type, const TransitionEventInit& initial
izer); |
| 70 | 68 |
| 71 String m_propertyName; | 69 String m_propertyName; |
| 72 double m_elapsedTime; | 70 double m_elapsedTime; |
| 73 }; | 71 }; |
| 74 | 72 |
| 75 } // namespace blink | 73 } // namespace blink |
| 76 | 74 |
| 77 #endif // TransitionEvent_h | 75 #endif // TransitionEvent_h |
| OLD | NEW |