| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 static ResourcePtr<ScriptResource> fetch(FetchRequest&, ResourceFetcher*); | 50 static ResourcePtr<ScriptResource> fetch(FetchRequest&, ResourceFetcher*); |
| 51 | 51 |
| 52 // Public for testing | 52 // Public for testing |
| 53 ScriptResource(const ResourceRequest&, const String& charset); | 53 ScriptResource(const ResourceRequest&, const String& charset); |
| 54 | 54 |
| 55 ~ScriptResource() override; | 55 ~ScriptResource() override; |
| 56 | 56 |
| 57 void didAddClient(ResourceClient*) override; | 57 void didAddClient(ResourceClient*) override; |
| 58 void appendData(const char*, unsigned) override; | 58 void appendData(const char*, unsigned) override; |
| 59 | 59 |
| 60 void destroyDecodedDataForFailedRevalidation() override; | |
| 61 | |
| 62 const String& script(); | 60 const String& script(); |
| 63 | 61 |
| 64 AtomicString mimeType() const; | 62 AtomicString mimeType() const; |
| 65 | 63 |
| 66 bool mimeTypeAllowedByNosniff() const; | 64 bool mimeTypeAllowedByNosniff() const; |
| 67 | 65 |
| 68 private: | 66 private: |
| 69 class ScriptResourceFactory : public ResourceFactory { | 67 class ScriptResourceFactory : public ResourceFactory { |
| 70 public: | 68 public: |
| 71 ScriptResourceFactory() | 69 ScriptResourceFactory() |
| 72 : ResourceFactory(Resource::Script) { } | 70 : ResourceFactory(Resource::Script) { } |
| 73 | 71 |
| 74 Resource* create(const ResourceRequest& request, const String& charset)
const override | 72 Resource* create(const ResourceRequest& request, const String& charset)
const override |
| 75 { | 73 { |
| 76 return new ScriptResource(request, charset); | 74 return new ScriptResource(request, charset); |
| 77 } | 75 } |
| 78 }; | 76 }; |
| 79 | 77 |
| 80 AtomicString m_script; | 78 AtomicString m_script; |
| 81 }; | 79 }; |
| 82 | 80 |
| 83 DEFINE_RESOURCE_TYPE_CASTS(Script); | 81 DEFINE_RESOURCE_TYPE_CASTS(Script); |
| 84 | 82 |
| 85 } | 83 } |
| 86 | 84 |
| 87 #endif | 85 #endif |
| OLD | NEW |