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 Apple Inc. All rights reserved. | 5 Copyright (C) 2004, 2005, 2006, 2007 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 void responseReceived(const ResourceResponse&, PassOwnPtr<WebDataConsumerHan
dle>) override; | 84 void responseReceived(const ResourceResponse&, PassOwnPtr<WebDataConsumerHan
dle>) override; |
85 void setSerializedCachedMetadata(const char*, size_t) override; | 85 void setSerializedCachedMetadata(const char*, size_t) override; |
86 void didSendData(unsigned long long bytesSent, unsigned long long totalBytes
ToBeSent) override; | 86 void didSendData(unsigned long long bytesSent, unsigned long long totalBytes
ToBeSent) override; |
87 void didDownloadData(int) override; | 87 void didDownloadData(int) override; |
88 void reportResourceTimingToClients(const ResourceTimingInfo&) override; | 88 void reportResourceTimingToClients(const ResourceTimingInfo&) override; |
89 }; | 89 }; |
90 | 90 |
91 #if ENABLE(SECURITY_ASSERT) | 91 #if ENABLE(SECURITY_ASSERT) |
92 inline bool isRawResource(const Resource& resource) | 92 inline bool isRawResource(const Resource& resource) |
93 { | 93 { |
94 Resource::Type type = resource.type(); | 94 Resource::Type type = resource.getType(); |
95 return type == Resource::MainResource || type == Resource::Raw || type == Re
source::TextTrack || type == Resource::Media || type == Resource::Manifest || ty
pe == Resource::ImportResource; | 95 return type == Resource::MainResource || type == Resource::Raw || type == Re
source::TextTrack || type == Resource::Media || type == Resource::Manifest || ty
pe == Resource::ImportResource; |
96 } | 96 } |
97 #endif | 97 #endif |
98 inline PassRefPtrWillBeRawPtr<RawResource> toRawResource(const PassRefPtrWillBeR
awPtr<Resource>& resource) | 98 inline PassRefPtrWillBeRawPtr<RawResource> toRawResource(const PassRefPtrWillBeR
awPtr<Resource>& resource) |
99 { | 99 { |
100 ASSERT_WITH_SECURITY_IMPLICATION(!resource || isRawResource(*resource.get())
); | 100 ASSERT_WITH_SECURITY_IMPLICATION(!resource || isRawResource(*resource.get())
); |
101 return static_cast<RawResource*>(resource.get()); | 101 return static_cast<RawResource*>(resource.get()); |
102 } | 102 } |
103 | 103 |
104 class CORE_EXPORT RawResourceClient : public ResourceClient { | 104 class CORE_EXPORT RawResourceClient : public ResourceClient { |
105 public: | 105 public: |
106 ~RawResourceClient() override {} | 106 ~RawResourceClient() override {} |
107 static bool isExpectedType(ResourceClient* client) { return client->resource
ClientType() == RawResourceType; } | 107 static bool isExpectedType(ResourceClient* client) { return client->getResou
rceClientType() == RawResourceType; } |
108 ResourceClientType resourceClientType() const final { return RawResourceType
; } | 108 ResourceClientType getResourceClientType() const final { return RawResourceT
ype; } |
109 | 109 |
110 virtual void dataSent(Resource*, unsigned long long /* bytesSent */, unsigne
d long long /* totalBytesToBeSent */) { } | 110 virtual void dataSent(Resource*, unsigned long long /* bytesSent */, unsigne
d long long /* totalBytesToBeSent */) { } |
111 virtual void responseReceived(Resource*, const ResourceResponse&, PassOwnPtr
<WebDataConsumerHandle>) { } | 111 virtual void responseReceived(Resource*, const ResourceResponse&, PassOwnPtr
<WebDataConsumerHandle>) { } |
112 virtual void setSerializedCachedMetadata(Resource*, const char*, size_t) { } | 112 virtual void setSerializedCachedMetadata(Resource*, const char*, size_t) { } |
113 virtual void dataReceived(Resource*, const char* /* data */, size_t /* lengt
h */) { } | 113 virtual void dataReceived(Resource*, const char* /* data */, size_t /* lengt
h */) { } |
114 virtual void redirectReceived(Resource*, ResourceRequest&, const ResourceRes
ponse&) { } | 114 virtual void redirectReceived(Resource*, ResourceRequest&, const ResourceRes
ponse&) { } |
115 virtual void updateRequest(Resource*, const ResourceRequest&) { } | 115 virtual void updateRequest(Resource*, const ResourceRequest&) { } |
116 virtual void dataDownloaded(Resource*, int) { } | 116 virtual void dataDownloaded(Resource*, int) { } |
117 virtual void didReceiveResourceTiming(Resource*, const ResourceTimingInfo&)
{ } | 117 virtual void didReceiveResourceTiming(Resource*, const ResourceTimingInfo&)
{ } |
118 }; | 118 }; |
119 | 119 |
120 } // namespace blink | 120 } // namespace blink |
121 | 121 |
122 #endif // RawResource_h | 122 #endif // RawResource_h |
OLD | NEW |