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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 class ScriptResource; | 46 class ScriptResource; |
47 | 47 |
48 class CORE_EXPORT ScriptResourceClient : public GarbageCollectedMixin, public Re
sourceClient { | 48 class CORE_EXPORT ScriptResourceClient : public GarbageCollectedMixin, public Re
sourceClient { |
49 public: | 49 public: |
50 ~ScriptResourceClient() override {} | 50 ~ScriptResourceClient() override {} |
51 static bool isExpectedType(ResourceClient* client) { return client->getResou
rceClientType() == ScriptType; } | 51 static bool isExpectedType(ResourceClient* client) { return client->getResou
rceClientType() == ScriptType; } |
52 ResourceClientType getResourceClientType() const final { return ScriptType;
} | 52 ResourceClientType getResourceClientType() const final { return ScriptType;
} |
53 | 53 |
54 virtual void notifyAppendData(ScriptResource* resource) { } | 54 virtual void notifyAppendData(ScriptResource* resource) { } |
55 | 55 |
| 56 virtual void notifyCancelStreamingTask(ScriptResource* resource) { } |
| 57 |
56 DEFINE_INLINE_VIRTUAL_TRACE() {} | 58 DEFINE_INLINE_VIRTUAL_TRACE() {} |
57 }; | 59 }; |
58 | 60 |
59 class CORE_EXPORT ScriptResource final : public TextResource { | 61 class CORE_EXPORT ScriptResource final : public TextResource { |
60 public: | 62 public: |
61 using ClientType = ScriptResourceClient; | 63 using ClientType = ScriptResourceClient; |
62 static ScriptResource* fetch(FetchRequest&, ResourceFetcher*); | 64 static ScriptResource* fetch(FetchRequest&, ResourceFetcher*); |
63 | 65 |
64 // Public for testing | 66 // Public for testing |
65 static ScriptResource* create(const ResourceRequest& request, const String&
charset) | 67 static ScriptResource* create(const ResourceRequest& request, const String&
charset) |
(...skipping 28 matching lines...) Expand all Loading... |
94 : ResourceFactory(Resource::Script) { } | 96 : ResourceFactory(Resource::Script) { } |
95 | 97 |
96 Resource* create(const ResourceRequest& request, const ResourceLoaderOpt
ions& options, const String& charset) const override | 98 Resource* create(const ResourceRequest& request, const ResourceLoaderOpt
ions& options, const String& charset) const override |
97 { | 99 { |
98 return new ScriptResource(request, options, charset); | 100 return new ScriptResource(request, options, charset); |
99 } | 101 } |
100 }; | 102 }; |
101 | 103 |
102 ScriptResource(const ResourceRequest&, const ResourceLoaderOptions&, const S
tring& charset); | 104 ScriptResource(const ResourceRequest&, const ResourceLoaderOptions&, const S
tring& charset); |
103 | 105 |
| 106 void destroyDecodedDataIfPossible() override; |
| 107 |
104 ScriptIntegrityDisposition m_integrityDisposition; | 108 ScriptIntegrityDisposition m_integrityDisposition; |
105 IntegrityMetadataSet m_integrityMetadata; | 109 IntegrityMetadataSet m_integrityMetadata; |
106 | 110 |
107 CompressibleString m_script; | 111 CompressibleString m_script; |
108 }; | 112 }; |
109 | 113 |
110 DEFINE_RESOURCE_TYPE_CASTS(Script); | 114 DEFINE_RESOURCE_TYPE_CASTS(Script); |
111 | 115 |
112 } // namespace blink | 116 } // namespace blink |
113 | 117 |
114 #endif | 118 #endif |
OLD | NEW |