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

Side by Side Diff: Source/core/css/CSSImageValue.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/CSSImageGeneratorValue.cpp ('k') | Source/core/css/CSSImportRule.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 * (C) 1999-2003 Lars Knoll (knoll@kde.org) 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 13 * Library General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Library General Public License 15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 18 * Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21 #include "config.h" 21 #include "config.h"
22 #include "core/css/CSSImageValue.h" 22 #include "core/css/CSSImageValue.h"
23 23
24 #include "CSSValueKeywords.h"
25 #include "core/css/CSSCursorImageValue.h"
26 #include "core/css/CSSParser.h" 24 #include "core/css/CSSParser.h"
27 #include "core/dom/Document.h" 25 #include "core/dom/Document.h"
28 #include "core/dom/Element.h"
29 #include "core/dom/WebCoreMemoryInstrumentation.h" 26 #include "core/dom/WebCoreMemoryInstrumentation.h"
30 #include "core/loader/cache/CachedImage.h" 27 #include "core/loader/cache/CachedImage.h"
31 #include "core/loader/cache/CachedResourceLoader.h" 28 #include "core/loader/cache/CachedResourceLoader.h"
32 #include "core/loader/cache/CachedResourceRequest.h" 29 #include "core/loader/cache/CachedResourceRequest.h"
33 #include "core/loader/cache/CachedResourceRequestInitiators.h" 30 #include "core/loader/cache/CachedResourceRequestInitiators.h"
34 #include "core/loader/cache/MemoryCache.h"
35 #include "core/rendering/style/StyleCachedImage.h" 31 #include "core/rendering/style/StyleCachedImage.h"
36 #include "core/rendering/style/StylePendingImage.h" 32 #include "core/rendering/style/StylePendingImage.h"
37 33
38 namespace WebCore { 34 namespace WebCore {
39 35
40 CSSImageValue::CSSImageValue(const String& url) 36 CSSImageValue::CSSImageValue(const String& url)
41 : CSSValue(ImageClass) 37 : CSSValue(ImageClass)
42 , m_url(url) 38 , m_url(url)
43 , m_accessedImage(false) 39 , m_accessedImage(false)
44 { 40 {
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 info.addMember(m_url, "url"); 109 info.addMember(m_url, "url");
114 // No need to report m_image as it is counted as part of RenderArena. 110 // No need to report m_image as it is counted as part of RenderArena.
115 } 111 }
116 112
117 bool CSSImageValue::knownToBeOpaque(const RenderObject* renderer) const 113 bool CSSImageValue::knownToBeOpaque(const RenderObject* renderer) const
118 { 114 {
119 return m_image ? m_image->knownToBeOpaque(renderer) : false; 115 return m_image ? m_image->knownToBeOpaque(renderer) : false;
120 } 116 }
121 117
122 } // namespace WebCore 118 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/CSSImageGeneratorValue.cpp ('k') | Source/core/css/CSSImportRule.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698