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

Side by Side Diff: sky/engine/core/events/TransitionEvent.h

Issue 723253004: Remove tons of OILPAN. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « sky/engine/core/events/TouchEventContext.cpp ('k') | sky/engine/core/events/TransitionEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698