| Index: third_party/WebKit/Source/core/css/CSSImageValue.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSImageValue.h b/third_party/WebKit/Source/core/css/CSSImageValue.h
|
| index f3f827cf8dfb91c62cf5c422bb24d2d82fc02170..5ec97cdb92790aa4bd3cb4656906b34b305f06ff 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSImageValue.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSImageValue.h
|
| @@ -51,7 +51,7 @@ public:
|
| ~CSSImageValue();
|
|
|
| bool isCachePending() const { return m_isCachePending; }
|
| - StyleFetchedImage* cachedImage() { ASSERT(!isCachePending()); return m_cachedImage.get(); }
|
| + StyleFetchedImage* cachedImage() const { ASSERT(!isCachePending()); return m_cachedImage.get(); }
|
| StyleFetchedImage* cacheImage(Document*, const ResourceLoaderOptions&);
|
| StyleFetchedImage* cacheImage(Document* document) { return cacheImage(document, ResourceFetcher::defaultResourceOptions()); }
|
|
|
| @@ -78,7 +78,7 @@ public:
|
| void setInitiator(const AtomicString& name) { m_initiatorName = name; }
|
|
|
| DECLARE_TRACE_AFTER_DISPATCH();
|
| - void restoreCachedResourceIfNeeded(Document&);
|
| + void restoreCachedResourceIfNeeded(Document&) const;
|
|
|
| private:
|
| CSSImageValue(const AtomicString& rawValue, const KURL&, StyleFetchedImage*);
|
|
|