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

Side by Side Diff: third_party/WebKit/Source/core/animation/Animation.h

Issue 1857143002: Oilpan: Remove RefCountedGarbageCollectedEventTargetWithInlineData (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 | « no previous file | third_party/WebKit/Source/core/animation/Animation.cpp » ('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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 #include "wtf/RefPtr.h" 47 #include "wtf/RefPtr.h"
48 48
49 namespace blink { 49 namespace blink {
50 50
51 class AnimationTimeline; 51 class AnimationTimeline;
52 class CompositorAnimationPlayer; 52 class CompositorAnimationPlayer;
53 class Element; 53 class Element;
54 class ExceptionState; 54 class ExceptionState;
55 55
56 class CORE_EXPORT Animation final 56 class CORE_EXPORT Animation final
57 : public RefCountedGarbageCollectedEventTargetWithInlineData<Animation> 57 : public EventTargetWithInlineData
58 , public ActiveScriptWrappable 58 , public ActiveScriptWrappable
59 , public ActiveDOMObject 59 , public ActiveDOMObject
60 , public CompositorAnimationDelegate 60 , public CompositorAnimationDelegate
61 , public CompositorAnimationPlayerClient { 61 , public CompositorAnimationPlayerClient {
62 DEFINE_WRAPPERTYPEINFO(); 62 DEFINE_WRAPPERTYPEINFO();
63 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(Animation); 63 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(Animation);
64 USING_GARBAGE_COLLECTED_MIXIN(Animation); 64 USING_GARBAGE_COLLECTED_MIXIN(Animation);
65 public: 65 public:
66 enum AnimationPlayState { 66 enum AnimationPlayState {
67 Unset, 67 Unset,
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 303
304 bool m_currentTimePending; 304 bool m_currentTimePending;
305 bool m_stateIsBeingUpdated; 305 bool m_stateIsBeingUpdated;
306 306
307 bool m_effectSuppressed; 307 bool m_effectSuppressed;
308 }; 308 };
309 309
310 } // namespace blink 310 } // namespace blink
311 311
312 #endif // Animation_h 312 #endif // Animation_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/animation/Animation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698