| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 | 63 |
| 64 PassRefPtr<CSSValue> cloneForCSSOM() const; | 64 PassRefPtr<CSSValue> cloneForCSSOM() const; |
| 65 | 65 |
| 66 bool hasFailedOrCanceledSubresources() const; | 66 bool hasFailedOrCanceledSubresources() const; |
| 67 | 67 |
| 68 bool equals(const CSSImageValue&) const; | 68 bool equals(const CSSImageValue&) const; |
| 69 | 69 |
| 70 bool knownToBeOpaque(const RenderObject*) const; | 70 bool knownToBeOpaque(const RenderObject*) const; |
| 71 | 71 |
| 72 void setInitiator(const AtomicString& name) { m_initiatorName = name; } | 72 void setInitiator(const AtomicString& name) { m_initiatorName = name; } |
| 73 | |
| 74 void traceAfterDispatch(Visitor*); | |
| 75 void restoreCachedResourceIfNeeded(Document&); | 73 void restoreCachedResourceIfNeeded(Document&); |
| 76 | 74 |
| 77 private: | 75 private: |
| 78 CSSImageValue(const String& rawValue, const KURL&, StyleImage*); | 76 CSSImageValue(const String& rawValue, const KURL&, StyleImage*); |
| 79 | 77 |
| 80 String m_relativeURL; | 78 String m_relativeURL; |
| 81 String m_absoluteURL; | 79 String m_absoluteURL; |
| 82 Referrer m_referrer; | 80 Referrer m_referrer; |
| 83 RefPtr<StyleImage> m_image; | 81 RefPtr<StyleImage> m_image; |
| 84 bool m_accessedImage; | 82 bool m_accessedImage; |
| 85 AtomicString m_initiatorName; | 83 AtomicString m_initiatorName; |
| 86 }; | 84 }; |
| 87 | 85 |
| 88 DEFINE_CSS_VALUE_TYPE_CASTS(CSSImageValue, isImageValue()); | 86 DEFINE_CSS_VALUE_TYPE_CASTS(CSSImageValue, isImageValue()); |
| 89 | 87 |
| 90 } // namespace blink | 88 } // namespace blink |
| 91 | 89 |
| 92 #endif // CSSImageValue_h | 90 #endif // CSSImageValue_h |
| OLD | NEW |