| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 static PassRefPtrWillBeRawPtr<CSSImageValue> create(const AtomicString& rawV
alue, const KURL& url, StyleFetchedImage* image = 0) | 48 static PassRefPtrWillBeRawPtr<CSSImageValue> create(const AtomicString& rawV
alue, const KURL& url, StyleFetchedImage* image = 0) |
| 49 { | 49 { |
| 50 return adoptRefWillBeNoop(new CSSImageValue(rawValue, url, image)); | 50 return adoptRefWillBeNoop(new CSSImageValue(rawValue, url, image)); |
| 51 } | 51 } |
| 52 ~CSSImageValue(); | 52 ~CSSImageValue(); |
| 53 | 53 |
| 54 bool isCachePending() const { return m_isCachePending; } | 54 bool isCachePending() const { return m_isCachePending; } |
| 55 StyleFetchedImage* cachedImage() const { ASSERT(!isCachePending()); return m
_cachedImage.get(); } | 55 StyleFetchedImage* cachedImage() const { ASSERT(!isCachePending()); return m
_cachedImage.get(); } |
| 56 StyleFetchedImage* cacheImage(Document*, CrossOriginAttributeValue = CrossOr
iginAttributeNotSet); | 56 StyleFetchedImage* cacheImage(Document*, CrossOriginAttributeValue = CrossOr
iginAttributeNotSet); |
| 57 | 57 |
| 58 const String& url() { return m_absoluteURL; } | 58 const String& url() const { 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 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 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 |