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

Side by Side Diff: Source/core/css/WebKitCSSShaderValue.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/WebKitCSSMatrix.cpp ('k') | Source/core/css/resolver/ScopedStyleResolver.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) 2011 Adobe Systems Incorporated. All rights reserved. 2 * Copyright (C) 2011 Adobe Systems Incorporated. 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 * 7 *
8 * 1. Redistributions of source code must retain the above 8 * 1. Redistributions of source code must retain the above
9 * copyright notice, this list of conditions and the following 9 * copyright notice, this list of conditions and the following
10 * disclaimer. 10 * disclaimer.
(...skipping 19 matching lines...) Expand all
30 #include "config.h" 30 #include "config.h"
31 31
32 #include "core/css/WebKitCSSShaderValue.h" 32 #include "core/css/WebKitCSSShaderValue.h"
33 33
34 #include "core/css/CSSParser.h" 34 #include "core/css/CSSParser.h"
35 #include "core/dom/Document.h" 35 #include "core/dom/Document.h"
36 #include "core/dom/WebCoreMemoryInstrumentation.h" 36 #include "core/dom/WebCoreMemoryInstrumentation.h"
37 #include "core/loader/cache/CachedResourceLoader.h" 37 #include "core/loader/cache/CachedResourceLoader.h"
38 #include "core/loader/cache/CachedResourceRequest.h" 38 #include "core/loader/cache/CachedResourceRequest.h"
39 #include "core/loader/cache/CachedResourceRequestInitiators.h" 39 #include "core/loader/cache/CachedResourceRequestInitiators.h"
40 #include "core/platform/KURL.h"
41 #include "core/rendering/style/StyleCachedShader.h" 40 #include "core/rendering/style/StyleCachedShader.h"
42 #include "core/rendering/style/StylePendingShader.h" 41 #include "core/rendering/style/StylePendingShader.h"
43 42
44 namespace WebCore { 43 namespace WebCore {
45 44
46 WebKitCSSShaderValue::WebKitCSSShaderValue(const String& url) 45 WebKitCSSShaderValue::WebKitCSSShaderValue(const String& url)
47 : CSSValue(WebKitCSSShaderClass) 46 : CSSValue(WebKitCSSShaderClass)
48 , m_url(url) 47 , m_url(url)
49 , m_accessedShader(false) 48 , m_accessedShader(false)
50 { 49 {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 102
104 void WebKitCSSShaderValue::reportDescendantMemoryUsage(MemoryObjectInfo* memoryO bjectInfo) const 103 void WebKitCSSShaderValue::reportDescendantMemoryUsage(MemoryObjectInfo* memoryO bjectInfo) const
105 { 104 {
106 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); 105 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS);
107 info.addMember(m_url, "url"); 106 info.addMember(m_url, "url");
108 info.addMember(m_format, "format"); 107 info.addMember(m_format, "format");
109 } 108 }
110 109
111 } // namespace WebCore 110 } // namespace WebCore
112 111
OLDNEW
« no previous file with comments | « Source/core/css/WebKitCSSMatrix.cpp ('k') | Source/core/css/resolver/ScopedStyleResolver.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698