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

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

Issue 636833002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/events (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/TreeScopeEventContext.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 blink { 32 namespace blink {
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 DEFINE_WRAPPERTYPEINFO();
44 public: 44 public:
45 static PassRefPtrWillBeRawPtr<TransitionEvent> create() 45 static PassRefPtrWillBeRawPtr<TransitionEvent> create()
46 { 46 {
47 return adoptRefWillBeNoop(new TransitionEvent); 47 return adoptRefWillBeNoop(new TransitionEvent);
48 } 48 }
49 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)
50 { 50 {
51 return adoptRefWillBeNoop(new TransitionEvent(type, propertyName, elapse dTime, pseudoElement)); 51 return adoptRefWillBeNoop(new TransitionEvent(type, propertyName, elapse dTime, pseudoElement));
52 } 52 }
53 static PassRefPtrWillBeRawPtr<TransitionEvent> create(const AtomicString& ty pe, const TransitionEventInit& initializer) 53 static PassRefPtrWillBeRawPtr<TransitionEvent> create(const AtomicString& ty pe, const TransitionEventInit& initializer)
54 { 54 {
55 return adoptRefWillBeNoop(new TransitionEvent(type, initializer)); 55 return adoptRefWillBeNoop(new TransitionEvent(type, initializer));
56 } 56 }
57 57
58 virtual ~TransitionEvent(); 58 virtual ~TransitionEvent();
59 59
60 const String& propertyName() const; 60 const String& propertyName() const;
61 double elapsedTime() const; 61 double elapsedTime() const;
62 const String& pseudoElement() const; 62 const String& pseudoElement() const;
63 63
64 virtual const AtomicString& interfaceName() const OVERRIDE; 64 virtual const AtomicString& interfaceName() const override;
65 65
66 virtual void trace(Visitor*) OVERRIDE; 66 virtual void trace(Visitor*) override;
67 67
68 private: 68 private:
69 TransitionEvent(); 69 TransitionEvent();
70 TransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime, const String& pseudoElement); 70 TransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime, const String& pseudoElement);
71 TransitionEvent(const AtomicString& type, const TransitionEventInit& initial izer); 71 TransitionEvent(const AtomicString& type, const TransitionEventInit& initial izer);
72 72
73 String m_propertyName; 73 String m_propertyName;
74 double m_elapsedTime; 74 double m_elapsedTime;
75 String m_pseudoElement; 75 String m_pseudoElement;
76 }; 76 };
77 77
78 } // namespace blink 78 } // namespace blink
79 79
80 #endif // TransitionEvent_h 80 #endif // TransitionEvent_h
OLDNEW
« no previous file with comments | « Source/core/events/TouchEvent.h ('k') | Source/core/events/TreeScopeEventContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698