| 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 |
| 60 const String& script(); | 62 const String& script(); |
| 61 | 63 |
| 62 AtomicString mimeType() const; | 64 AtomicString mimeType() const; |
| 63 | 65 |
| 64 bool mimeTypeAllowedByNosniff() const; | 66 bool mimeTypeAllowedByNosniff() const; |
| 65 | 67 |
| 66 private: | 68 private: |
| 67 class ScriptResourceFactory : public ResourceFactory { | 69 class ScriptResourceFactory : public ResourceFactory { |
| 68 public: | 70 public: |
| 69 ScriptResourceFactory() | 71 ScriptResourceFactory() |
| 70 : ResourceFactory(Resource::Script) { } | 72 : ResourceFactory(Resource::Script) { } |
| 71 | 73 |
| 72 Resource* create(const ResourceRequest& request, const String& charset)
const override | 74 Resource* create(const ResourceRequest& request, const String& charset)
const override |
| 73 { | 75 { |
| 74 return new ScriptResource(request, charset); | 76 return new ScriptResource(request, charset); |
| 75 } | 77 } |
| 76 }; | 78 }; |
| 77 | 79 |
| 78 AtomicString m_script; | 80 AtomicString m_script; |
| 79 }; | 81 }; |
| 80 | 82 |
| 81 DEFINE_RESOURCE_TYPE_CASTS(Script); | 83 DEFINE_RESOURCE_TYPE_CASTS(Script); |
| 82 | 84 |
| 83 } | 85 } |
| 84 | 86 |
| 85 #endif | 87 #endif |
| OLD | NEW |