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

Side by Side Diff: third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.h

Issue 1434383002: Oilpan: move InspectedFrames to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move InspectedFrames to the heap Created 5 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef InspectorAnimationAgent_h 5 #ifndef InspectorAnimationAgent_h
6 #define InspectorAnimationAgent_h 6 #define InspectorAnimationAgent_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "core/InspectorFrontend.h" 9 #include "core/InspectorFrontend.h"
10 #include "core/animation/Animation.h" 10 #include "core/animation/Animation.h"
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 64
65 typedef TypeBuilder::Animation::Animation::Type::Enum AnimationType; 65 typedef TypeBuilder::Animation::Animation::Type::Enum AnimationType;
66 66
67 PassRefPtr<TypeBuilder::Animation::Animation> buildObjectForAnimation(Animat ion&); 67 PassRefPtr<TypeBuilder::Animation::Animation> buildObjectForAnimation(Animat ion&);
68 PassRefPtr<TypeBuilder::Animation::Animation> buildObjectForAnimation(Animat ion&, AnimationType, PassRefPtr<TypeBuilder::Animation::KeyframesRule> keyframeR ule = nullptr); 68 PassRefPtr<TypeBuilder::Animation::Animation> buildObjectForAnimation(Animat ion&, AnimationType, PassRefPtr<TypeBuilder::Animation::KeyframesRule> keyframeR ule = nullptr);
69 double normalizedStartTime(Animation&); 69 double normalizedStartTime(Animation&);
70 AnimationTimeline& referenceTimeline(); 70 AnimationTimeline& referenceTimeline();
71 Animation* animationClone(Animation*); 71 Animation* animationClone(Animation*);
72 String createCSSId(Animation&); 72 String createCSSId(Animation&);
73 73
74 InspectedFrames* m_inspectedFrames; 74 RawPtrWillBeMember<InspectedFrames> m_inspectedFrames;
75 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; 75 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent;
76 RawPtrWillBeMember<InspectorCSSAgent> m_cssAgent; 76 RawPtrWillBeMember<InspectorCSSAgent> m_cssAgent;
77 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; 77 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager;
78 PersistentHeapHashMapWillBeHeapHashMap<String, Member<Animation>> m_idToAnim ation; 78 PersistentHeapHashMapWillBeHeapHashMap<String, Member<Animation>> m_idToAnim ation;
79 PersistentHeapHashMapWillBeHeapHashMap<String, Member<Animation>> m_idToAnim ationClone; 79 PersistentHeapHashMapWillBeHeapHashMap<String, Member<Animation>> m_idToAnim ationClone;
80 WillBeHeapHashMap<String, AnimationType> m_idToAnimationType; 80 WillBeHeapHashMap<String, AnimationType> m_idToAnimationType;
81 bool m_isCloning; 81 bool m_isCloning;
82 }; 82 };
83 83
84 } 84 }
85 85
86 #endif // InspectorAnimationAgent_h 86 #endif // InspectorAnimationAgent_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698