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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 const String& url() { return m_url; } | 45 const String& url() { return m_url; } |
46 | 46 |
47 String customCssText() const; | 47 String customCssText() const; |
48 | 48 |
49 PassRefPtr<CSSValue> cloneForCSSOM() const; | 49 PassRefPtr<CSSValue> cloneForCSSOM() const; |
50 | 50 |
51 bool hasFailedOrCanceledSubresources() const; | 51 bool hasFailedOrCanceledSubresources() const; |
52 | 52 |
53 bool equals(const CSSImageValue&) const; | 53 bool equals(const CSSImageValue&) const; |
54 | 54 |
55 void reportDescendantMemoryUsage(MemoryObjectInfo*) const; | |
56 | |
57 bool knownToBeOpaque(const RenderObject*) const; | 55 bool knownToBeOpaque(const RenderObject*) const; |
58 | 56 |
59 void setInitiator(const AtomicString& name) { m_initiatorName = name; } | 57 void setInitiator(const AtomicString& name) { m_initiatorName = name; } |
60 | 58 |
61 private: | 59 private: |
62 explicit CSSImageValue(const String& url); | 60 explicit CSSImageValue(const String& url); |
63 CSSImageValue(const String& url, StyleImage*); | 61 CSSImageValue(const String& url, StyleImage*); |
64 | 62 |
65 String m_url; | 63 String m_url; |
66 RefPtr<StyleImage> m_image; | 64 RefPtr<StyleImage> m_image; |
67 bool m_accessedImage; | 65 bool m_accessedImage; |
68 AtomicString m_initiatorName; | 66 AtomicString m_initiatorName; |
69 }; | 67 }; |
70 | 68 |
71 } // namespace WebCore | 69 } // namespace WebCore |
72 | 70 |
73 #endif // CSSImageValue_h | 71 #endif // CSSImageValue_h |
OLD | NEW |