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

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

Issue 1907223002: Remove unnecessary use of HeapHashMap for InspectorAnimationAgent::m_idToAnimationType. (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/inspector/InspectorAnimationAgent.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 // 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/animation/Animation.h" 9 #include "core/animation/Animation.h"
10 #include "core/css/CSSKeyframesRule.h" 10 #include "core/css/CSSKeyframesRule.h"
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 AnimationTimeline& referenceTimeline(); 68 AnimationTimeline& referenceTimeline();
69 blink::Animation* animationClone(blink::Animation*); 69 blink::Animation* animationClone(blink::Animation*);
70 String createCSSId(blink::Animation&); 70 String createCSSId(blink::Animation&);
71 71
72 Member<InspectedFrames> m_inspectedFrames; 72 Member<InspectedFrames> m_inspectedFrames;
73 Member<InspectorDOMAgent> m_domAgent; 73 Member<InspectorDOMAgent> m_domAgent;
74 Member<InspectorCSSAgent> m_cssAgent; 74 Member<InspectorCSSAgent> m_cssAgent;
75 V8RuntimeAgent* m_runtimeAgent; 75 V8RuntimeAgent* m_runtimeAgent;
76 HeapHashMap<String, Member<blink::Animation>> m_idToAnimation; 76 HeapHashMap<String, Member<blink::Animation>> m_idToAnimation;
77 HeapHashMap<String, Member<blink::Animation>> m_idToAnimationClone; 77 HeapHashMap<String, Member<blink::Animation>> m_idToAnimationClone;
78 HeapHashMap<String, String> m_idToAnimationType; 78 HashMap<String, String> m_idToAnimationType;
79 bool m_isCloning; 79 bool m_isCloning;
80 HashSet<String> m_clearedAnimations; 80 HashSet<String> m_clearedAnimations;
81 }; 81 };
82 82
83 } // namespace blink 83 } // namespace blink
84 84
85 #endif // InspectorAnimationAgent_h 85 #endif // InspectorAnimationAgent_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698