| 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 25 matching lines...) Expand all Loading... |
| 36 enum class ScriptIntegrityDisposition { | 36 enum class ScriptIntegrityDisposition { |
| 37 NotChecked = 0, | 37 NotChecked = 0, |
| 38 Failed, | 38 Failed, |
| 39 Passed | 39 Passed |
| 40 }; | 40 }; |
| 41 | 41 |
| 42 class FetchRequest; | 42 class FetchRequest; |
| 43 class ResourceFetcher; | 43 class ResourceFetcher; |
| 44 class ScriptResource; | 44 class ScriptResource; |
| 45 | 45 |
| 46 class CORE_EXPORT ScriptResourceClient : public GarbageCollectedMixin, public Re
sourceClient { | 46 class CORE_EXPORT ScriptResourceClient : public ResourceClient { |
| 47 public: | 47 public: |
| 48 ~ScriptResourceClient() override {} | 48 ~ScriptResourceClient() override {} |
| 49 static bool isExpectedType(ResourceClient* client) { return client->getResou
rceClientType() == ScriptType; } | 49 static bool isExpectedType(ResourceClient* client) { return client->getResou
rceClientType() == ScriptType; } |
| 50 ResourceClientType getResourceClientType() const final { return ScriptType;
} | 50 ResourceClientType getResourceClientType() const final { return ScriptType;
} |
| 51 | 51 |
| 52 virtual void notifyAppendData(ScriptResource* resource) { } | 52 virtual void notifyAppendData(ScriptResource* resource) { } |
| 53 | |
| 54 DEFINE_INLINE_VIRTUAL_TRACE() {} | |
| 55 }; | 53 }; |
| 56 | 54 |
| 57 class CORE_EXPORT ScriptResource final : public TextResource { | 55 class CORE_EXPORT ScriptResource final : public TextResource { |
| 58 public: | 56 public: |
| 59 using ClientType = ScriptResourceClient; | 57 using ClientType = ScriptResourceClient; |
| 60 static ScriptResource* fetch(FetchRequest&, ResourceFetcher*); | 58 static ScriptResource* fetch(FetchRequest&, ResourceFetcher*); |
| 61 | 59 |
| 62 // Public for testing | 60 // Public for testing |
| 63 static ScriptResource* create(const ResourceRequest& request, const String&
charset) | 61 static ScriptResource* create(const ResourceRequest& request, const String&
charset) |
| 64 { | 62 { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 IntegrityMetadataSet m_integrityMetadata; | 101 IntegrityMetadataSet m_integrityMetadata; |
| 104 | 102 |
| 105 AtomicString m_script; | 103 AtomicString m_script; |
| 106 }; | 104 }; |
| 107 | 105 |
| 108 DEFINE_RESOURCE_TYPE_CASTS(Script); | 106 DEFINE_RESOURCE_TYPE_CASTS(Script); |
| 109 | 107 |
| 110 } // namespace blink | 108 } // namespace blink |
| 111 | 109 |
| 112 #endif | 110 #endif |
| OLD | NEW |