| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (C) 2010 Rob Buis <rwlbuis@gmail.com> | 2 Copyright (C) 2010 Rob Buis <rwlbuis@gmail.com> |
| 3 Copyright (C) 2011 Cosmin Truta <ctruta@gmail.com> | 3 Copyright (C) 2011 Cosmin Truta <ctruta@gmail.com> |
| 4 Copyright (C) 2012 University of Szeged | 4 Copyright (C) 2012 University of Szeged |
| 5 Copyright (C) 2012 Renata Hodovan <reni@webkit.org> | 5 Copyright (C) 2012 Renata Hodovan <reni@webkit.org> |
| 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 13 matching lines...) Expand all Loading... |
| 24 #define DocumentResource_h | 24 #define DocumentResource_h |
| 25 | 25 |
| 26 #include "core/fetch/Resource.h" | 26 #include "core/fetch/Resource.h" |
| 27 #include "core/fetch/ResourceClient.h" | 27 #include "core/fetch/ResourceClient.h" |
| 28 #include "core/fetch/ResourcePtr.h" | 28 #include "core/fetch/ResourcePtr.h" |
| 29 #include "core/html/parser/TextResourceDecoder.h" | 29 #include "core/html/parser/TextResourceDecoder.h" |
| 30 | 30 |
| 31 namespace blink { | 31 namespace blink { |
| 32 | 32 |
| 33 class Document; | 33 class Document; |
| 34 class FetchRequest; |
| 35 class ResourceFetcher; |
| 34 | 36 |
| 35 class DocumentResource final : public Resource { | 37 class DocumentResource final : public Resource { |
| 36 public: | 38 public: |
| 37 typedef ResourceClient ClientType; | 39 typedef ResourceClient ClientType; |
| 38 | 40 |
| 39 DocumentResource(const ResourceRequest&, Type); | 41 static ResourcePtr<DocumentResource> fetchSVGDocument(FetchRequest&, Resourc
eFetcher*); |
| 40 virtual ~DocumentResource(); | 42 virtual ~DocumentResource(); |
| 41 DECLARE_VIRTUAL_TRACE(); | 43 DECLARE_VIRTUAL_TRACE(); |
| 42 | 44 |
| 43 Document* document() const { return m_document.get(); } | 45 Document* document() const { return m_document.get(); } |
| 44 | 46 |
| 45 virtual void setEncoding(const String&) override; | 47 virtual void setEncoding(const String&) override; |
| 46 virtual String encoding() const override; | 48 virtual String encoding() const override; |
| 47 virtual void checkNotify() override; | 49 virtual void checkNotify() override; |
| 48 | 50 |
| 49 private: | 51 private: |
| 52 class SVGDocumentResourceFactory : public ResourceFactory { |
| 53 public: |
| 54 SVGDocumentResourceFactory() |
| 55 : ResourceFactory(Resource::SVGDocument) { } |
| 56 |
| 57 Resource* create(const ResourceRequest& request, const String& charset)
const override |
| 58 { |
| 59 return new DocumentResource(request, Resource::SVGDocument); |
| 60 } |
| 61 }; |
| 62 DocumentResource(const ResourceRequest&, Type); |
| 63 |
| 50 PassRefPtrWillBeRawPtr<Document> createDocument(const KURL&); | 64 PassRefPtrWillBeRawPtr<Document> createDocument(const KURL&); |
| 51 | 65 |
| 52 RefPtrWillBeMember<Document> m_document; | 66 RefPtrWillBeMember<Document> m_document; |
| 53 OwnPtr<TextResourceDecoder> m_decoder; | 67 OwnPtr<TextResourceDecoder> m_decoder; |
| 54 }; | 68 }; |
| 55 | 69 |
| 56 DEFINE_TYPE_CASTS(DocumentResource, Resource, resource, resource->type() == Reso
urce::SVGDocument, resource.type() == Resource::SVGDocument); \ | 70 DEFINE_TYPE_CASTS(DocumentResource, Resource, resource, resource->type() == Reso
urce::SVGDocument, resource.type() == Resource::SVGDocument); \ |
| 57 inline DocumentResource* toDocumentResource(const ResourcePtr<Resource>& ptr) {
return toDocumentResource(ptr.get()); } | 71 inline DocumentResource* toDocumentResource(const ResourcePtr<Resource>& ptr) {
return toDocumentResource(ptr.get()); } |
| 58 | 72 |
| 59 class DocumentResourceClient : public ResourceClient { | 73 class DocumentResourceClient : public ResourceClient { |
| 60 public: | 74 public: |
| 61 virtual ~DocumentResourceClient() { } | 75 virtual ~DocumentResourceClient() { } |
| 62 static ResourceClientType expectedType() { return DocumentType; } | 76 static ResourceClientType expectedType() { return DocumentType; } |
| 63 virtual ResourceClientType resourceClientType() const override { return expe
ctedType(); } | 77 virtual ResourceClientType resourceClientType() const override { return expe
ctedType(); } |
| 64 }; | 78 }; |
| 65 | 79 |
| 66 } | 80 } |
| 67 | 81 |
| 68 #endif // DocumentResource_h | 82 #endif // DocumentResource_h |
| OLD | NEW |