| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 const ResourceError& resourceError() const { return m_error; } | 110 const ResourceError& resourceError() const { return m_error; } |
| 111 | 111 |
| 112 void setIdentifier(unsigned long identifier) { m_identifier = identifier; } | 112 void setIdentifier(unsigned long identifier) { m_identifier = identifier; } |
| 113 unsigned long identifier() const { return m_identifier; } | 113 unsigned long identifier() const { return m_identifier; } |
| 114 | 114 |
| 115 virtual bool shouldIgnoreHTTPStatusCodeErrors() const { return false; } | 115 virtual bool shouldIgnoreHTTPStatusCodeErrors() const { return false; } |
| 116 | 116 |
| 117 const ResourceRequest& resourceRequest() const { return m_resourceRequest; } | 117 const ResourceRequest& resourceRequest() const { return m_resourceRequest; } |
| 118 const ResourceRequest& lastResourceRequest() const; | 118 const ResourceRequest& lastResourceRequest() const; |
| 119 | 119 |
| 120 virtual void prepareToRevalidate() { } |
| 120 void setRevalidatingRequest(const ResourceRequest&); | 121 void setRevalidatingRequest(const ResourceRequest&); |
| 121 | 122 |
| 122 // This url can have a fragment, but it can match resources that differ by t
he fragment only. | 123 // This url can have a fragment, but it can match resources that differ by t
he fragment only. |
| 123 const KURL& url() const { return m_resourceRequest.url();} | 124 const KURL& url() const { return m_resourceRequest.url();} |
| 124 Type getType() const { return static_cast<Type>(m_type); } | 125 Type getType() const { return static_cast<Type>(m_type); } |
| 125 const ResourceLoaderOptions& options() const { return m_options; } | 126 const ResourceLoaderOptions& options() const { return m_options; } |
| 126 ResourceLoaderOptions& mutableOptions() { return m_options; } | 127 ResourceLoaderOptions& mutableOptions() { return m_options; } |
| 127 | 128 |
| 128 void didChangePriority(ResourceLoadPriority, int intraPriorityValue); | 129 void didChangePriority(ResourceLoadPriority, int intraPriorityValue); |
| 129 virtual ResourcePriority priorityFromObservers() { return ResourcePriority()
; } | 130 virtual ResourcePriority priorityFromObservers() { return ResourcePriority()
; } |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 | 365 |
| 365 Resource::Type m_type; | 366 Resource::Type m_type; |
| 366 }; | 367 }; |
| 367 | 368 |
| 368 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \ | 369 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \ |
| 369 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, resource->getType(
) == Resource::typeName, resource.getType() == Resource::typeName); | 370 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, resource->getType(
) == Resource::typeName, resource.getType() == Resource::typeName); |
| 370 | 371 |
| 371 } // namespace blink | 372 } // namespace blink |
| 372 | 373 |
| 373 #endif | 374 #endif |
| OLD | NEW |