OLD | NEW |
1 /* | 1 /* |
2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) | 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) |
3 Copyright (C) 2001 Dirk Mueller <mueller@kde.org> | 3 Copyright (C) 2001 Dirk Mueller <mueller@kde.org> |
4 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 4 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
5 Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 5 Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
6 | 6 |
7 This library is free software; you can redistribute it and/or | 7 This library is free software; you can redistribute it and/or |
8 modify it under the terms of the GNU Library General Public | 8 modify it under the terms of the GNU Library General Public |
9 License as published by the Free Software Foundation; either | 9 License as published by the Free Software Foundation; either |
10 version 2 of the License, or (at your option) any later version. | 10 version 2 of the License, or (at your option) any later version. |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 const String sheetText(bool enforceMIMEType = true, bool* hasValidMIMETy
pe = 0) const; | 44 const String sheetText(bool enforceMIMEType = true, bool* hasValidMIMETy
pe = 0) const; |
45 | 45 |
46 virtual void didAddClient(CachedResourceClient*); | 46 virtual void didAddClient(CachedResourceClient*); |
47 | 47 |
48 virtual void setEncoding(const String&); | 48 virtual void setEncoding(const String&); |
49 virtual String encoding() const; | 49 virtual String encoding() const; |
50 virtual void destroyDecodedData() OVERRIDE; | 50 virtual void destroyDecodedData() OVERRIDE; |
51 | 51 |
52 PassRefPtr<StyleSheetContents> restoreParsedStyleSheet(const CSSParserCo
ntext&); | 52 PassRefPtr<StyleSheetContents> restoreParsedStyleSheet(const CSSParserCo
ntext&); |
53 void saveParsedStyleSheet(PassRefPtr<StyleSheetContents>); | 53 void saveParsedStyleSheet(PassRefPtr<StyleSheetContents>); |
54 | |
55 virtual void reportMemoryUsage(MemoryObjectInfo*) const OVERRIDE; | |
56 | 54 |
57 private: | 55 private: |
58 bool canUseSheet(bool enforceMIMEType, bool* hasValidMIMEType) const; | 56 bool canUseSheet(bool enforceMIMEType, bool* hasValidMIMEType) const; |
59 virtual PurgePriority purgePriority() const { return PurgeLast; } | 57 virtual PurgePriority purgePriority() const { return PurgeLast; } |
60 | 58 |
61 protected: | 59 protected: |
62 virtual void checkNotify(); | 60 virtual void checkNotify(); |
63 | 61 |
64 RefPtr<TextResourceDecoder> m_decoder; | 62 RefPtr<TextResourceDecoder> m_decoder; |
65 String m_decodedSheetText; | 63 String m_decodedSheetText; |
66 | 64 |
67 RefPtr<StyleSheetContents> m_parsedStyleSheetCache; | 65 RefPtr<StyleSheetContents> m_parsedStyleSheetCache; |
68 }; | 66 }; |
69 | 67 |
70 } | 68 } |
71 | 69 |
72 #endif | 70 #endif |
OLD | NEW |