OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc.
All rights reserved. | 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc.
All rights reserved. |
4 * Copyright (C) 2013 Google Inc. All rights reserved. | 4 * Copyright (C) 2013 Google Inc. All rights reserved. |
5 * | 5 * |
6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
10 * | 10 * |
11 * This library is distributed in the hope that it will be useful, | 11 * This library is distributed in the hope that it will be useful, |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
14 * Library General Public License for more details. | 14 * Library General Public License for more details. |
15 * | 15 * |
16 * You should have received a copy of the GNU Library General Public License | 16 * You should have received a copy of the GNU Library General Public License |
17 * along with this library; see the file COPYING.LIB. If not, write to | 17 * along with this library; see the file COPYING.LIB. If not, write to |
18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
19 * Boston, MA 02110-1301, USA. | 19 * Boston, MA 02110-1301, USA. |
20 * | 20 * |
21 */ | 21 */ |
22 | 22 |
23 #ifndef ElementStyleResources_h | 23 #ifndef ElementStyleResources_h |
24 #define ElementStyleResources_h | 24 #define ElementStyleResources_h |
25 | 25 |
26 #include "CSSPropertyNames.h" | 26 #include "CSSPropertyNames.h" |
| 27 #include "heap/Handle.h" |
27 #include "platform/graphics/Color.h" | 28 #include "platform/graphics/Color.h" |
28 #include "wtf/HashMap.h" | 29 #include "wtf/HashMap.h" |
29 #include "wtf/Noncopyable.h" | 30 #include "wtf/Noncopyable.h" |
30 | 31 |
31 namespace WebCore { | 32 namespace WebCore { |
32 | 33 |
33 class CSSCursorImageValue; | 34 class CSSCursorImageValue; |
34 class CSSImageValue; | 35 class CSSImageValue; |
35 class CSSImageGeneratorValue; | 36 class CSSImageGeneratorValue; |
36 class CSSImageSetValue; | 37 class CSSImageSetValue; |
37 class CSSSVGDocumentValue; | 38 class CSSSVGDocumentValue; |
38 class CSSValue; | 39 class CSSValue; |
39 class FilterOperation; | 40 class FilterOperation; |
40 class StyleImage; | 41 class StyleImage; |
41 class TextLinkColors; | 42 class TextLinkColors; |
42 | 43 |
43 typedef HashMap<FilterOperation*, RefPtr<CSSSVGDocumentValue> > PendingSVGDocume
ntMap; | 44 typedef WillBePersistentHeapHashMap<FilterOperation*, RefPtrWillBeMember<CSSSVGD
ocumentValue> > PendingSVGDocumentMap; |
44 typedef HashMap<CSSPropertyID, RefPtr<CSSValue> > PendingImagePropertyMap; | 45 typedef HashMap<CSSPropertyID, RefPtr<CSSValue> > PendingImagePropertyMap; |
45 | 46 |
46 // Holds information about resources, requested by stylesheets. | 47 // Holds information about resources, requested by stylesheets. |
47 // Lifetime: per-element style resolve. | 48 // Lifetime: per-element style resolve. |
48 class ElementStyleResources { | 49 class ElementStyleResources { |
49 WTF_MAKE_NONCOPYABLE(ElementStyleResources); | 50 WTF_MAKE_NONCOPYABLE(ElementStyleResources); |
50 public: | 51 public: |
51 ElementStyleResources(); | 52 ElementStyleResources(); |
52 | 53 |
53 PassRefPtr<StyleImage> styleImage(const TextLinkColors&, Color currentColor,
CSSPropertyID, CSSValue*); | 54 PassRefPtr<StyleImage> styleImage(const TextLinkColors&, Color currentColor,
CSSPropertyID, CSSValue*); |
(...skipping 13 matching lines...) Loading... |
67 | 68 |
68 private: | 69 private: |
69 PendingImagePropertyMap m_pendingImageProperties; | 70 PendingImagePropertyMap m_pendingImageProperties; |
70 PendingSVGDocumentMap m_pendingSVGDocuments; | 71 PendingSVGDocumentMap m_pendingSVGDocuments; |
71 float m_deviceScaleFactor; | 72 float m_deviceScaleFactor; |
72 }; | 73 }; |
73 | 74 |
74 } // namespace WebCore | 75 } // namespace WebCore |
75 | 76 |
76 #endif // ElementStyleResources_h | 77 #endif // ElementStyleResources_h |
OLD | NEW |