OLD | NEW |
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, 2012 Apple Inc. All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2008, 2012 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, |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 { | 44 { |
45 return create(AtomicString(rawValue), url, image); | 45 return create(AtomicString(rawValue), url, image); |
46 } | 46 } |
47 static PassRefPtrWillBeRawPtr<CSSImageValue> create(const AtomicString& rawV
alue, const KURL& url, StyleFetchedImage* image = 0) | 47 static PassRefPtrWillBeRawPtr<CSSImageValue> create(const AtomicString& rawV
alue, const KURL& url, StyleFetchedImage* image = 0) |
48 { | 48 { |
49 return adoptRefWillBeNoop(new CSSImageValue(rawValue, url, image)); | 49 return adoptRefWillBeNoop(new CSSImageValue(rawValue, url, image)); |
50 } | 50 } |
51 ~CSSImageValue(); | 51 ~CSSImageValue(); |
52 | 52 |
53 bool isCachePending() const { return m_isCachePending; } | 53 bool isCachePending() const { return m_isCachePending; } |
54 StyleFetchedImage* cachedImage() { ASSERT(!isCachePending()); return m_cache
dImage.get(); } | 54 StyleFetchedImage* cachedImage() const { ASSERT(!isCachePending()); return m
_cachedImage.get(); } |
55 StyleFetchedImage* cacheImage(Document*, const ResourceLoaderOptions&); | 55 StyleFetchedImage* cacheImage(Document*, const ResourceLoaderOptions&); |
56 StyleFetchedImage* cacheImage(Document* document) { return cacheImage(docume
nt, ResourceFetcher::defaultResourceOptions()); } | 56 StyleFetchedImage* cacheImage(Document* document) { return cacheImage(docume
nt, ResourceFetcher::defaultResourceOptions()); } |
57 | 57 |
58 const String& url() { return m_absoluteURL; } | 58 const String& url() { return m_absoluteURL; } |
59 | 59 |
60 void setReferrer(const Referrer& referrer) { m_referrer = referrer; } | 60 void setReferrer(const Referrer& referrer) { m_referrer = referrer; } |
61 const Referrer& referrer() const { return m_referrer; } | 61 const Referrer& referrer() const { return m_referrer; } |
62 | 62 |
63 void reResolveURL(const Document&); | 63 void reResolveURL(const Document&); |
64 | 64 |
65 String customCSSText() const; | 65 String customCSSText() const; |
66 | 66 |
67 bool hasFailedOrCanceledSubresources() const; | 67 bool hasFailedOrCanceledSubresources() const; |
68 | 68 |
69 bool equals(const CSSImageValue&) const; | 69 bool equals(const CSSImageValue&) const; |
70 | 70 |
71 bool knownToBeOpaque(const LayoutObject*) const; | 71 bool knownToBeOpaque(const LayoutObject*) const; |
72 | 72 |
73 PassRefPtrWillBeRawPtr<CSSImageValue> valueWithURLMadeAbsolute() | 73 PassRefPtrWillBeRawPtr<CSSImageValue> valueWithURLMadeAbsolute() |
74 { | 74 { |
75 return create(KURL(ParsedURLString, m_absoluteURL), m_cachedImage.get())
; | 75 return create(KURL(ParsedURLString, m_absoluteURL), m_cachedImage.get())
; |
76 } | 76 } |
77 | 77 |
78 void setInitiator(const AtomicString& name) { m_initiatorName = name; } | 78 void setInitiator(const AtomicString& name) { m_initiatorName = name; } |
79 | 79 |
80 DECLARE_TRACE_AFTER_DISPATCH(); | 80 DECLARE_TRACE_AFTER_DISPATCH(); |
81 void restoreCachedResourceIfNeeded(Document&); | 81 void restoreCachedResourceIfNeeded(Document&) const; |
82 | 82 |
83 private: | 83 private: |
84 CSSImageValue(const AtomicString& rawValue, const KURL&, StyleFetchedImage*)
; | 84 CSSImageValue(const AtomicString& rawValue, const KURL&, StyleFetchedImage*)
; |
85 | 85 |
86 AtomicString m_relativeURL; | 86 AtomicString m_relativeURL; |
87 AtomicString m_absoluteURL; | 87 AtomicString m_absoluteURL; |
88 Referrer m_referrer; | 88 Referrer m_referrer; |
89 bool m_isCachePending; | 89 bool m_isCachePending; |
90 RefPtrWillBeMember<StyleFetchedImage> m_cachedImage; | 90 RefPtrWillBeMember<StyleFetchedImage> m_cachedImage; |
91 AtomicString m_initiatorName; | 91 AtomicString m_initiatorName; |
92 }; | 92 }; |
93 | 93 |
94 DEFINE_CSS_VALUE_TYPE_CASTS(CSSImageValue, isImageValue()); | 94 DEFINE_CSS_VALUE_TYPE_CASTS(CSSImageValue, isImageValue()); |
95 | 95 |
96 } // namespace blink | 96 } // namespace blink |
97 | 97 |
98 #endif // CSSImageValue_h | 98 #endif // CSSImageValue_h |
OLD | NEW |