HomeSort by relevance Sort by last modified time
    Searched defs:CSSImageValue (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSImageValue.cpp 22 #include "core/css/CSSImageValue.h"
36 CSSImageValue::CSSImageValue(const String& rawValue, const KURL& url, StyleImage* image)
45 CSSImageValue::~CSSImageValue()
49 StyleImage* CSSImageValue::cachedOrPendingImage()
57 StyleFetchedImage* CSSImageValue::cachedImage(ResourceFetcher* fetcher, const ResourceLoaderOptions& options)
77 void CSSImageValue::restoreCachedResourceIfNeeded(Document& document)
92 bool CSSImageValue::hasFailedOrCanceledSubresources() const
101 bool CSSImageValue::equals(const CSSImageValue& other) cons
    [all...]
CSSImageValue.h 38 class CSSImageValue : public CSSValue {
40 static PassRefPtrWillBeRawPtr<CSSImageValue> create(const KURL& url, StyleImage* image = 0)
42 return adoptRefWillBeNoop(new CSSImageValue(url, url, image));
44 static PassRefPtrWillBeRawPtr<CSSImageValue> create(const String& rawValue, const KURL& url, StyleImage* image = 0)
46 return adoptRefWillBeNoop(new CSSImageValue(rawValue, url, image));
48 ~CSSImageValue();
68 bool equals(const CSSImageValue&) const;
78 CSSImageValue(const String& rawValue, const KURL&, StyleImage*);
88 DEFINE_CSS_VALUE_TYPE_CASTS(CSSImageValue, isImageValue());

Completed in 41 milliseconds