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

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

Issue 133133006: Update Event classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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
« no previous file with comments | « Source/core/events/TouchEvent.h ('k') | Source/core/events/UIEvent.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 * 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 21 matching lines...) Expand all
32 namespace WebCore { 32 namespace WebCore {
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 : public Event { 42 class TransitionEvent FINAL : public Event {
43 public: 43 public:
44 static PassRefPtr<TransitionEvent> create() 44 static PassRefPtr<TransitionEvent> create()
45 { 45 {
46 return adoptRef(new TransitionEvent); 46 return adoptRef(new TransitionEvent);
47 } 47 }
48 static PassRefPtr<TransitionEvent> create(const AtomicString& type, const St ring& propertyName, double elapsedTime, const String& pseudoElement) 48 static PassRefPtr<TransitionEvent> create(const AtomicString& type, const St ring& propertyName, double elapsedTime, const String& pseudoElement)
49 { 49 {
50 return adoptRef(new TransitionEvent(type, propertyName, elapsedTime, pse udoElement)); 50 return adoptRef(new TransitionEvent(type, propertyName, elapsedTime, pse udoElement));
51 } 51 }
52 static PassRefPtr<TransitionEvent> create(const AtomicString& type, const Tr ansitionEventInit& initializer) 52 static PassRefPtr<TransitionEvent> create(const AtomicString& type, const Tr ansitionEventInit& initializer)
53 { 53 {
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 const String& pseudoElement() const; 61 const String& pseudoElement() const;
62 62
63 virtual const AtomicString& interfaceName() const; 63 virtual const AtomicString& interfaceName() const OVERRIDE;
64 64
65 private: 65 private:
66 TransitionEvent(); 66 TransitionEvent();
67 TransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime, const String& pseudoElement); 67 TransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime, const String& pseudoElement);
68 TransitionEvent(const AtomicString& type, const TransitionEventInit& initial izer); 68 TransitionEvent(const AtomicString& type, const TransitionEventInit& initial izer);
69 69
70 String m_propertyName; 70 String m_propertyName;
71 double m_elapsedTime; 71 double m_elapsedTime;
72 String m_pseudoElement; 72 String m_pseudoElement;
73 }; 73 };
74 74
75 } // namespace WebCore 75 } // namespace WebCore
76 76
77 #endif // TransitionEvent_h 77 #endif // TransitionEvent_h
78 78
OLDNEW
« no previous file with comments | « Source/core/events/TouchEvent.h ('k') | Source/core/events/UIEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698