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, 2009, 2010, 2011 Apple Inc. All
rights reserved. | 5 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 const ResourceRequest& lastResourceRequest() const; | 125 const ResourceRequest& lastResourceRequest() const; |
126 | 126 |
127 void setRevalidatingRequest(const ResourceRequest& request) { m_revalidating
Request = request; } | 127 void setRevalidatingRequest(const ResourceRequest& request) { m_revalidating
Request = request; } |
128 | 128 |
129 const KURL& url() const { return m_resourceRequest.url();} | 129 const KURL& url() const { return m_resourceRequest.url();} |
130 Type type() const { return static_cast<Type>(m_type); } | 130 Type type() const { return static_cast<Type>(m_type); } |
131 const ResourceLoaderOptions& options() const { return m_options; } | 131 const ResourceLoaderOptions& options() const { return m_options; } |
132 void setOptions(const ResourceLoaderOptions& options) { m_options = options;
} | 132 void setOptions(const ResourceLoaderOptions& options) { m_options = options;
} |
133 | 133 |
134 void didChangePriority(ResourceLoadPriority, int intraPriorityValue); | 134 void didChangePriority(ResourceLoadPriority, int intraPriorityValue); |
135 ResourcePriority priorityFromClients(); | 135 virtual ResourcePriority priorityFromClients() { return ResourcePriority();
} |
136 | 136 |
137 void addClient(ResourceClient*); | 137 void addClient(ResourceClient*); |
138 void removeClient(ResourceClient*); | 138 void removeClient(ResourceClient*); |
139 bool hasClients() const { return !m_clients.isEmpty() || !m_clientsAwaitingC
allback.isEmpty() || !m_finishedClients.isEmpty(); } | 139 bool hasClients() const { return !m_clients.isEmpty() || !m_clientsAwaitingC
allback.isEmpty() || !m_finishedClients.isEmpty(); } |
140 | 140 |
141 enum PreloadResult { | 141 enum PreloadResult { |
142 PreloadNotReferenced, | 142 PreloadNotReferenced, |
143 PreloadReferenced, | 143 PreloadReferenced, |
144 PreloadReferencedWhileLoading, | 144 PreloadReferencedWhileLoading, |
145 PreloadReferencedWhileComplete | 145 PreloadReferencedWhileComplete |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
398 Resource::Type m_type; | 398 Resource::Type m_type; |
399 }; | 399 }; |
400 | 400 |
401 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \ | 401 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \ |
402 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, resource->type() =
= Resource::typeName, resource.type() == Resource::typeName); \ | 402 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, resource->type() =
= Resource::typeName, resource.type() == Resource::typeName); \ |
403 inline typeName##Resource* to##typeName##Resource(const RefPtrWillBeRawPtr<R
esource>& ptr) { return to##typeName##Resource(ptr.get()); } | 403 inline typeName##Resource* to##typeName##Resource(const RefPtrWillBeRawPtr<R
esource>& ptr) { return to##typeName##Resource(ptr.get()); } |
404 | 404 |
405 } // namespace blink | 405 } // namespace blink |
406 | 406 |
407 #endif | 407 #endif |
OLD | NEW |