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

Side by Side Diff: sky/engine/core/css/resolver/StyleResourceLoader.cpp

Issue 1214633005: Remove CSS clients of ImageResource (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 5 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 | « sky/engine/core/css/resolver/StyleBuilderCustom.cpp ('k') | sky/engine/core/dom/Element.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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
4 * Copyright (C) 2013 Google Inc. All rights reserved. 4 * Copyright (C) 2013 Google Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
11 * This library is distributed in the hope that it will be useful, 11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details. 14 * Library General Public License for more details.
15 * 15 *
16 * You should have received a copy of the GNU Library General Public License 16 * You should have received a copy of the GNU Library General Public License
17 * along with this library; see the file COPYING.LIB. If not, write to 17 * along with this library; see the file COPYING.LIB. If not, write to
18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301, USA. 19 * Boston, MA 02110-1301, USA.
20 * 20 *
21 */ 21 */
22 22
23 #include "sky/engine/core/css/resolver/StyleResourceLoader.h" 23 #include "sky/engine/core/css/resolver/StyleResourceLoader.h"
24 24
25 #include "gen/sky/core/CSSPropertyNames.h" 25 #include "gen/sky/core/CSSPropertyNames.h"
26 #include "sky/engine/core/css/CSSImageValue.h"
27 #include "sky/engine/core/css/resolver/ElementStyleResources.h" 26 #include "sky/engine/core/css/resolver/ElementStyleResources.h"
28 #include "sky/engine/core/fetch/ResourceFetcher.h" 27 #include "sky/engine/core/fetch/ResourceFetcher.h"
29 #include "sky/engine/core/rendering/style/FillLayer.h" 28 #include "sky/engine/core/rendering/style/FillLayer.h"
30 #include "sky/engine/core/rendering/style/RenderStyle.h" 29 #include "sky/engine/core/rendering/style/RenderStyle.h"
31 #include "sky/engine/core/rendering/style/StyleFetchedImage.h"
32 #include "sky/engine/core/rendering/style/StyleFetchedImageSet.h"
33 #include "sky/engine/core/rendering/style/StyleGeneratedImage.h" 30 #include "sky/engine/core/rendering/style/StyleGeneratedImage.h"
34 #include "sky/engine/core/rendering/style/StylePendingImage.h" 31 #include "sky/engine/core/rendering/style/StylePendingImage.h"
35 32
36 namespace blink { 33 namespace blink {
37 34
38 StyleResourceLoader::StyleResourceLoader(ResourceFetcher* fetcher) 35 StyleResourceLoader::StyleResourceLoader(ResourceFetcher* fetcher)
39 : m_fetcher(fetcher) 36 : m_fetcher(fetcher)
40 { 37 {
41 } 38 }
42 39
43 PassRefPtr<StyleImage> StyleResourceLoader::loadPendingImage(StylePendingImage* pendingImage, float deviceScaleFactor) 40 PassRefPtr<StyleImage> StyleResourceLoader::loadPendingImage(StylePendingImage* pendingImage, float deviceScaleFactor)
44 { 41 {
45 if (CSSImageValue* imageValue = pendingImage->cssImageValue()) 42 if (CSSImageGeneratorValue* imageGeneratorValue = pendingImage->cssImageGene ratorValue()) {
46 return imageValue->cachedImage(m_fetcher, ResourceFetcher::defaultResour ceOptions());
47
48 if (CSSImageGeneratorValue* imageGeneratorValue
49 = pendingImage->cssImageGeneratorValue()) {
50 imageGeneratorValue->loadSubimages(m_fetcher); 43 imageGeneratorValue->loadSubimages(m_fetcher);
51 return StyleGeneratedImage::create(imageGeneratorValue); 44 return StyleGeneratedImage::create(imageGeneratorValue);
52 } 45 }
53 46
54 if (CSSImageSetValue* imageSetValue = pendingImage->cssImageSetValue())
55 return imageSetValue->cachedImageSet(m_fetcher, deviceScaleFactor, Resou rceFetcher::defaultResourceOptions());
56
57 return nullptr; 47 return nullptr;
58 } 48 }
59 49
60 void StyleResourceLoader::loadPendingImages(RenderStyle* style, ElementStyleReso urces& elementStyleResources) 50 void StyleResourceLoader::loadPendingImages(RenderStyle* style, ElementStyleReso urces& elementStyleResources)
61 { 51 {
62 if (elementStyleResources.pendingImageProperties().isEmpty()) 52 if (elementStyleResources.pendingImageProperties().isEmpty())
63 return; 53 return;
64 54
65 PendingImagePropertyMap::const_iterator::Keys end = elementStyleResources.pe ndingImageProperties().end().keys(); 55 PendingImagePropertyMap::const_iterator::Keys end = elementStyleResources.pe ndingImageProperties().end().keys();
66 for (PendingImagePropertyMap::const_iterator::Keys it = elementStyleResource s.pendingImageProperties().begin().keys(); it != end; ++it) { 56 for (PendingImagePropertyMap::const_iterator::Keys it = elementStyleResource s.pendingImageProperties().begin().keys(); it != end; ++it) {
(...skipping 20 matching lines...) Expand all
87 elementStyleResources.clearPendingImageProperties(); 77 elementStyleResources.clearPendingImageProperties();
88 } 78 }
89 79
90 void StyleResourceLoader::loadPendingResources(RenderStyle* renderStyle, Element StyleResources& elementStyleResources) 80 void StyleResourceLoader::loadPendingResources(RenderStyle* renderStyle, Element StyleResources& elementStyleResources)
91 { 81 {
92 // Start loading images referenced by this style. 82 // Start loading images referenced by this style.
93 loadPendingImages(renderStyle, elementStyleResources); 83 loadPendingImages(renderStyle, elementStyleResources);
94 } 84 }
95 85
96 } 86 }
OLDNEW
« no previous file with comments | « sky/engine/core/css/resolver/StyleBuilderCustom.cpp ('k') | sky/engine/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698