Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Side by Side Diff: Source/core/events/AnimationEvent.h

Issue 1232333002: Fix virtual/override/final usage in the rest of Source/core/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/events/AnimationPlayerEvent.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2008 Apple Inc. 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 29 matching lines...) Expand all
40 } 40 }
41 static PassRefPtrWillBeRawPtr<AnimationEvent> create(const AtomicString& typ e, const String& animationName, double elapsedTime) 41 static PassRefPtrWillBeRawPtr<AnimationEvent> create(const AtomicString& typ e, const String& animationName, double elapsedTime)
42 { 42 {
43 return adoptRefWillBeNoop(new AnimationEvent(type, animationName, elapse dTime)); 43 return adoptRefWillBeNoop(new AnimationEvent(type, animationName, elapse dTime));
44 } 44 }
45 static PassRefPtrWillBeRawPtr<AnimationEvent> create(const AtomicString& typ e, const AnimationEventInit& initializer) 45 static PassRefPtrWillBeRawPtr<AnimationEvent> create(const AtomicString& typ e, const AnimationEventInit& initializer)
46 { 46 {
47 return adoptRefWillBeNoop(new AnimationEvent(type, initializer)); 47 return adoptRefWillBeNoop(new AnimationEvent(type, initializer));
48 } 48 }
49 49
50 virtual ~AnimationEvent(); 50 ~AnimationEvent() override;
51 51
52 const String& animationName() const; 52 const String& animationName() const;
53 double elapsedTime() const; 53 double elapsedTime() const;
54 54
55 virtual const AtomicString& interfaceName() const override; 55 const AtomicString& interfaceName() const override;
56 56
57 DECLARE_VIRTUAL_TRACE(); 57 DECLARE_VIRTUAL_TRACE();
58 58
59 private: 59 private:
60 AnimationEvent(); 60 AnimationEvent();
61 AnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime); 61 AnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime);
62 AnimationEvent(const AtomicString&, const AnimationEventInit&); 62 AnimationEvent(const AtomicString&, const AnimationEventInit&);
63 63
64 String m_animationName; 64 String m_animationName;
65 double m_elapsedTime; 65 double m_elapsedTime;
66 }; 66 };
67 67
68 } // namespace blink 68 } // namespace blink
69 69
70 #endif // AnimationEvent_h 70 #endif // AnimationEvent_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/events/AnimationPlayerEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698