Chromium Code Reviews| 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 20 matching lines...) Expand all Loading... | |
| 31 #include "platform/heap/Handle.h" | 31 #include "platform/heap/Handle.h" |
| 32 | 32 |
| 33 namespace blink { | 33 namespace blink { |
| 34 | 34 |
| 35 class CSSParserContext; | 35 class CSSParserContext; |
| 36 class ResourceClient; | 36 class ResourceClient; |
| 37 class StyleSheetContents; | 37 class StyleSheetContents; |
| 38 | 38 |
| 39 class CSSStyleSheetResource final : public StyleSheetResource { | 39 class CSSStyleSheetResource final : public StyleSheetResource { |
| 40 public: | 40 public: |
| 41 enum MIMETypeCheck { | |
|
jochen (gone - plz use gerrit)
2015/06/08 13:35:46
how about an enum class here?
| |
| 42 StrictMIMETypeCheck, | |
| 43 LaxMIMETypeCheck | |
| 44 }; | |
| 45 | |
| 41 CSSStyleSheetResource(const ResourceRequest&, const String& charset); | 46 CSSStyleSheetResource(const ResourceRequest&, const String& charset); |
| 42 virtual ~CSSStyleSheetResource(); | 47 virtual ~CSSStyleSheetResource(); |
| 43 DECLARE_VIRTUAL_TRACE(); | 48 DECLARE_VIRTUAL_TRACE(); |
| 44 | 49 |
| 45 const String sheetText(bool* hasValidMIMEType = 0) const; | 50 const String sheetText(MIMETypeCheck = StrictMIMETypeCheck) const; |
| 46 | 51 |
| 47 const AtomicString mimeType() const; | 52 const AtomicString mimeType() const; |
| 48 | 53 |
| 49 virtual void didAddClient(ResourceClient*) override; | 54 virtual void didAddClient(ResourceClient*) override; |
| 50 | 55 |
| 51 PassRefPtrWillBeRawPtr<StyleSheetContents> restoreParsedStyleSheet(const CSS ParserContext&); | 56 PassRefPtrWillBeRawPtr<StyleSheetContents> restoreParsedStyleSheet(const CSS ParserContext&); |
| 52 void saveParsedStyleSheet(PassRefPtrWillBeRawPtr<StyleSheetContents>); | 57 void saveParsedStyleSheet(PassRefPtrWillBeRawPtr<StyleSheetContents>); |
| 53 | 58 |
| 54 protected: | 59 protected: |
| 55 virtual bool isSafeToUnlock() const override; | 60 virtual bool isSafeToUnlock() const override; |
| 56 virtual void destroyDecodedDataIfPossible() override; | 61 virtual void destroyDecodedDataIfPossible() override; |
| 57 | 62 |
| 58 private: | 63 private: |
| 59 bool canUseSheet(bool* hasValidMIMEType) const; | 64 bool canUseSheet(MIMETypeCheck) const; |
| 60 virtual void dispose() override; | 65 virtual void dispose() override; |
| 61 virtual void checkNotify() override; | 66 virtual void checkNotify() override; |
| 62 | 67 |
| 63 String m_decodedSheetText; | 68 String m_decodedSheetText; |
| 64 | 69 |
| 65 RefPtrWillBeMember<StyleSheetContents> m_parsedStyleSheetCache; | 70 RefPtrWillBeMember<StyleSheetContents> m_parsedStyleSheetCache; |
| 66 }; | 71 }; |
| 67 | 72 |
| 68 DEFINE_RESOURCE_TYPE_CASTS(CSSStyleSheet); | 73 DEFINE_RESOURCE_TYPE_CASTS(CSSStyleSheet); |
| 69 | 74 |
| 70 } | 75 } |
| 71 | 76 |
| 72 #endif | 77 #endif |
| OLD | NEW |