| OLD | NEW |
| (Empty) |
| 1 /* | |
| 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. | |
| 4 * Copyright (C) 2013 Google Inc. All rights reserved. | |
| 5 * | |
| 6 * This library is free software; you can redistribute it and/or | |
| 7 * modify it under the terms of the GNU Library General Public | |
| 8 * License as published by the Free Software Foundation; either | |
| 9 * version 2 of the License, or (at your option) any later version. | |
| 10 * | |
| 11 * This library is distributed in the hope that it will be useful, | |
| 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 14 * Library General Public License for more details. | |
| 15 * | |
| 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 | |
| 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |
| 19 * Boston, MA 02110-1301, USA. | |
| 20 * | |
| 21 */ | |
| 22 | |
| 23 #include "sky/engine/core/css/resolver/StyleResourceLoader.h" | |
| 24 | |
| 25 #include "gen/sky/core/CSSPropertyNames.h" | |
| 26 #include "sky/engine/core/css/resolver/ElementStyleResources.h" | |
| 27 #include "sky/engine/core/fetch/ResourceFetcher.h" | |
| 28 #include "sky/engine/core/rendering/style/FillLayer.h" | |
| 29 #include "sky/engine/core/rendering/style/RenderStyle.h" | |
| 30 #include "sky/engine/core/rendering/style/StyleGeneratedImage.h" | |
| 31 #include "sky/engine/core/rendering/style/StylePendingImage.h" | |
| 32 | |
| 33 namespace blink { | |
| 34 | |
| 35 StyleResourceLoader::StyleResourceLoader(ResourceFetcher* fetcher) | |
| 36 : m_fetcher(fetcher) | |
| 37 { | |
| 38 } | |
| 39 | |
| 40 PassRefPtr<StyleImage> StyleResourceLoader::loadPendingImage(StylePendingImage*
pendingImage, float deviceScaleFactor) | |
| 41 { | |
| 42 if (CSSImageGeneratorValue* imageGeneratorValue = pendingImage->cssImageGene
ratorValue()) { | |
| 43 imageGeneratorValue->loadSubimages(m_fetcher); | |
| 44 return StyleGeneratedImage::create(imageGeneratorValue); | |
| 45 } | |
| 46 | |
| 47 return nullptr; | |
| 48 } | |
| 49 | |
| 50 void StyleResourceLoader::loadPendingImages(RenderStyle* style, ElementStyleReso
urces& elementStyleResources) | |
| 51 { | |
| 52 if (elementStyleResources.pendingImageProperties().isEmpty()) | |
| 53 return; | |
| 54 | |
| 55 PendingImagePropertyMap::const_iterator::Keys end = elementStyleResources.pe
ndingImageProperties().end().keys(); | |
| 56 for (PendingImagePropertyMap::const_iterator::Keys it = elementStyleResource
s.pendingImageProperties().begin().keys(); it != end; ++it) { | |
| 57 CSSPropertyID currentProperty = *it; | |
| 58 | |
| 59 switch (currentProperty) { | |
| 60 case CSSPropertyBackgroundImage: { | |
| 61 for (FillLayer* backgroundLayer = &style->accessBackgroundLayers();
backgroundLayer; backgroundLayer = backgroundLayer->next()) { | |
| 62 if (backgroundLayer->image() && backgroundLayer->image()->isPend
ingImage()) | |
| 63 backgroundLayer->setImage(loadPendingImage(toStylePendingIma
ge(backgroundLayer->image()), elementStyleResources.deviceScaleFactor())); | |
| 64 } | |
| 65 break; | |
| 66 } | |
| 67 case CSSPropertyBorderImageSource: { | |
| 68 if (style->borderImageSource() && style->borderImageSource()->isPend
ingImage()) | |
| 69 style->setBorderImageSource(loadPendingImage(toStylePendingImage
(style->borderImageSource()), elementStyleResources.deviceScaleFactor())); | |
| 70 break; | |
| 71 } | |
| 72 default: | |
| 73 ASSERT_NOT_REACHED(); | |
| 74 } | |
| 75 } | |
| 76 | |
| 77 elementStyleResources.clearPendingImageProperties(); | |
| 78 } | |
| 79 | |
| 80 void StyleResourceLoader::loadPendingResources(RenderStyle* renderStyle, Element
StyleResources& elementStyleResources) | |
| 81 { | |
| 82 // Start loading images referenced by this style. | |
| 83 loadPendingImages(renderStyle, elementStyleResources); | |
| 84 } | |
| 85 | |
| 86 } | |
| OLD | NEW |