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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 | 85 |
86 bool isAccessAllowed(SecurityOrigin*); | 86 bool isAccessAllowed(SecurityOrigin*); |
87 | 87 |
88 virtual void didAddClient(ResourceClient*) override; | 88 virtual void didAddClient(ResourceClient*) override; |
89 virtual void didRemoveClient(ResourceClient*) override; | 89 virtual void didRemoveClient(ResourceClient*) override; |
90 | 90 |
91 virtual void allClientsRemoved() override; | 91 virtual void allClientsRemoved() override; |
92 | 92 |
93 virtual void appendData(const char*, unsigned) override; | 93 virtual void appendData(const char*, unsigned) override; |
94 virtual void error(Resource::Status) override; | 94 virtual void error(Resource::Status) override; |
95 virtual void responseReceived(const ResourceResponse&) override; | 95 virtual void responseReceived(const ResourceResponse&, PassOwnPtr<WebDataCon
sumerHandle>) override; |
96 virtual void finishOnePart() override; | 96 virtual void finishOnePart() override; |
97 | 97 |
98 // For compatibility, images keep loading even if there are HTTP errors. | 98 // For compatibility, images keep loading even if there are HTTP errors. |
99 virtual bool shouldIgnoreHTTPStatusCodeErrors() const override { return true
; } | 99 virtual bool shouldIgnoreHTTPStatusCodeErrors() const override { return true
; } |
100 | 100 |
101 virtual bool isImage() const override { return true; } | 101 virtual bool isImage() const override { return true; } |
102 virtual bool stillNeedsLoad() const override { return !errorOccurred() && st
atus() == Unknown && !isLoading(); } | 102 virtual bool stillNeedsLoad() const override { return !errorOccurred() && st
atus() == Unknown && !isLoading(); } |
103 | 103 |
104 // ImageObserver | 104 // ImageObserver |
105 virtual void decodedSizeChanged(const blink::Image*, int delta) override; | 105 virtual void decodedSizeChanged(const blink::Image*, int delta) override; |
(...skipping 28 matching lines...) Expand all Loading... |
134 OwnPtr<SVGImageCache> m_svgImageCache; | 134 OwnPtr<SVGImageCache> m_svgImageCache; |
135 bool m_loadingMultipartContent; | 135 bool m_loadingMultipartContent; |
136 bool m_hasDevicePixelRatioHeaderValue; | 136 bool m_hasDevicePixelRatioHeaderValue; |
137 }; | 137 }; |
138 | 138 |
139 DEFINE_RESOURCE_TYPE_CASTS(Image); | 139 DEFINE_RESOURCE_TYPE_CASTS(Image); |
140 | 140 |
141 } | 141 } |
142 | 142 |
143 #endif | 143 #endif |
OLD | NEW |