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

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

Issue 478243002: bindings: Adds virtual ScriptWrappable::wrap method. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced. Created 6 years, 3 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 | « 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 22 matching lines...) Expand all
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 public: 44 public:
44 static PassRefPtrWillBeRawPtr<TransitionEvent> create() 45 static PassRefPtrWillBeRawPtr<TransitionEvent> create()
45 { 46 {
46 return adoptRefWillBeNoop(new TransitionEvent); 47 return adoptRefWillBeNoop(new TransitionEvent);
47 } 48 }
48 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)
49 { 50 {
50 return adoptRefWillBeNoop(new TransitionEvent(type, propertyName, elapse dTime, pseudoElement)); 51 return adoptRefWillBeNoop(new TransitionEvent(type, propertyName, elapse dTime, pseudoElement));
51 } 52 }
52 static PassRefPtrWillBeRawPtr<TransitionEvent> create(const AtomicString& ty pe, const TransitionEventInit& initializer) 53 static PassRefPtrWillBeRawPtr<TransitionEvent> create(const AtomicString& ty pe, const TransitionEventInit& initializer)
(...skipping 17 matching lines...) Expand all
70 TransitionEvent(const AtomicString& type, const TransitionEventInit& initial izer); 71 TransitionEvent(const AtomicString& type, const TransitionEventInit& initial izer);
71 72
72 String m_propertyName; 73 String m_propertyName;
73 double m_elapsedTime; 74 double m_elapsedTime;
74 String m_pseudoElement; 75 String m_pseudoElement;
75 }; 76 };
76 77
77 } // namespace blink 78 } // namespace blink
78 79
79 #endif // TransitionEvent_h 80 #endif // TransitionEvent_h
80
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