| 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 12 matching lines...) Expand all Loading... |
| 23 pages from the web. It has a memory cache for these objects. | 23 pages from the web. It has a memory cache for these objects. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef ScriptResource_h | 26 #ifndef ScriptResource_h |
| 27 #define ScriptResource_h | 27 #define ScriptResource_h |
| 28 | 28 |
| 29 #include "core/CoreExport.h" | 29 #include "core/CoreExport.h" |
| 30 #include "core/fetch/IntegrityMetadata.h" | 30 #include "core/fetch/IntegrityMetadata.h" |
| 31 #include "core/fetch/ResourceClient.h" | 31 #include "core/fetch/ResourceClient.h" |
| 32 #include "core/fetch/TextResource.h" | 32 #include "core/fetch/TextResource.h" |
| 33 #include "platform/heap/Handle.h" |
| 33 #include "platform/text/CompressibleString.h" | 34 #include "platform/text/CompressibleString.h" |
| 34 | 35 |
| 35 namespace blink { | 36 namespace blink { |
| 36 | 37 |
| 37 enum class ScriptIntegrityDisposition { | 38 enum class ScriptIntegrityDisposition { |
| 38 NotChecked = 0, | 39 NotChecked = 0, |
| 39 Failed, | 40 Failed, |
| 40 Passed | 41 Passed |
| 41 }; | 42 }; |
| 42 | 43 |
| 43 class FetchRequest; | 44 class FetchRequest; |
| 44 class ScriptResource; | 45 class ScriptResource; |
| 45 | 46 |
| 46 class CORE_EXPORT ScriptResourceClient : public ResourceClient { | 47 class CORE_EXPORT ScriptResourceClient : public GarbageCollectedMixin, public Re
sourceClient { |
| 47 public: | 48 public: |
| 48 ~ScriptResourceClient() override {} | 49 ~ScriptResourceClient() override {} |
| 49 static bool isExpectedType(ResourceClient* client) { return client->getResou
rceClientType() == ScriptType; } | 50 static bool isExpectedType(ResourceClient* client) { return client->getResou
rceClientType() == ScriptType; } |
| 50 ResourceClientType getResourceClientType() const final { return ScriptType;
} | 51 ResourceClientType getResourceClientType() const final { return ScriptType;
} |
| 51 | 52 |
| 52 virtual void notifyAppendData(ScriptResource* resource) { } | 53 virtual void notifyAppendData(ScriptResource* resource) { } |
| 54 |
| 55 DEFINE_INLINE_VIRTUAL_TRACE() {} |
| 53 }; | 56 }; |
| 54 | 57 |
| 55 class CORE_EXPORT ScriptResource final : public TextResource { | 58 class CORE_EXPORT ScriptResource final : public TextResource { |
| 56 public: | 59 public: |
| 57 using ClientType = ScriptResourceClient; | 60 using ClientType = ScriptResourceClient; |
| 58 static ScriptResource* fetch(FetchRequest&, ResourceFetcher*); | 61 static ScriptResource* fetch(FetchRequest&, ResourceFetcher*); |
| 59 | 62 |
| 60 // Public for testing | 63 // Public for testing |
| 61 static ScriptResource* create(const ResourceRequest& request, const String&
charset) | 64 static ScriptResource* create(const ResourceRequest& request, const String&
charset) |
| 62 { | 65 { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 IntegrityMetadataSet m_integrityMetadata; | 104 IntegrityMetadataSet m_integrityMetadata; |
| 102 | 105 |
| 103 CompressibleString m_script; | 106 CompressibleString m_script; |
| 104 }; | 107 }; |
| 105 | 108 |
| 106 DEFINE_RESOURCE_TYPE_CASTS(Script); | 109 DEFINE_RESOURCE_TYPE_CASTS(Script); |
| 107 | 110 |
| 108 } // namespace blink | 111 } // namespace blink |
| 109 | 112 |
| 110 #endif | 113 #endif |
| OLD | NEW |