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

Side by Side Diff: Source/core/css/WebKitCSSKeyframesRule.cpp

Issue 15387004: Remove some unused includes from core/css and core/dom (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 7 years, 7 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 | « Source/core/css/StyleSheetList.cpp ('k') | Source/core/css/WebKitCSSMatrix.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) 2007, 2008, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2008, 2012 Apple 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 11 matching lines...) Expand all
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #include "config.h" 26 #include "config.h"
27 #include "core/css/WebKitCSSKeyframesRule.h" 27 #include "core/css/WebKitCSSKeyframesRule.h"
28 28
29 #include "core/css/CSSParser.h" 29 #include "core/css/CSSParser.h"
30 #include "core/css/CSSRuleList.h" 30 #include "core/css/CSSRuleList.h"
31 #include "core/css/CSSStyleSheet.h" 31 #include "core/css/CSSStyleSheet.h"
32 #include "core/css/StylePropertySet.h"
33 #include "core/css/StyleSheet.h"
34 #include "core/css/WebKitCSSKeyframeRule.h" 32 #include "core/css/WebKitCSSKeyframeRule.h"
35 #include <wtf/MemoryInstrumentationVector.h> 33 #include <wtf/MemoryInstrumentationVector.h>
36 #include <wtf/text/StringBuilder.h> 34 #include <wtf/text/StringBuilder.h>
37 35
38 namespace WebCore { 36 namespace WebCore {
39 37
40 StyleRuleKeyframes::StyleRuleKeyframes() 38 StyleRuleKeyframes::StyleRuleKeyframes()
41 : StyleRuleBase(Keyframes, 0) 39 : StyleRuleBase(Keyframes, 0)
42 { 40 {
43 } 41 }
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 void WebKitCSSKeyframesRule::reportMemoryUsage(MemoryObjectInfo* memoryObjectInf o) const 208 void WebKitCSSKeyframesRule::reportMemoryUsage(MemoryObjectInfo* memoryObjectInf o) const
211 { 209 {
212 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); 210 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS);
213 CSSRule::reportMemoryUsage(memoryObjectInfo); 211 CSSRule::reportMemoryUsage(memoryObjectInfo);
214 info.addMember(m_keyframesRule, "keyframesRule"); 212 info.addMember(m_keyframesRule, "keyframesRule");
215 info.addMember(m_childRuleCSSOMWrappers, "childRuleCSSOMWrappers"); 213 info.addMember(m_childRuleCSSOMWrappers, "childRuleCSSOMWrappers");
216 info.addMember(m_ruleListCSSOMWrapper, "ruleListCSSOMWrapper"); 214 info.addMember(m_ruleListCSSOMWrapper, "ruleListCSSOMWrapper");
217 } 215 }
218 216
219 } // namespace WebCore 217 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/StyleSheetList.cpp ('k') | Source/core/css/WebKitCSSMatrix.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698