Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(466)

Side by Side Diff: third_party/WebKit/Source/core/fetch/Resource.h

Issue 1893233002: WebFonts: reset m_loadLimitState on memory cache revalidation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address hiroshige's comments at #11 Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 void setRevalidatingRequest(const ResourceRequest&); 120 virtual void setRevalidatingRequest(const ResourceRequest&);
121 121
122 // This url can have a fragment, but it can match resources that differ by t he fragment only. 122 // 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();} 123 const KURL& url() const { return m_resourceRequest.url();}
124 Type getType() const { return static_cast<Type>(m_type); } 124 Type getType() const { return static_cast<Type>(m_type); }
125 const ResourceLoaderOptions& options() const { return m_options; } 125 const ResourceLoaderOptions& options() const { return m_options; }
126 ResourceLoaderOptions& mutableOptions() { return m_options; } 126 ResourceLoaderOptions& mutableOptions() { return m_options; }
127 127
128 void didChangePriority(ResourceLoadPriority, int intraPriorityValue); 128 void didChangePriority(ResourceLoadPriority, int intraPriorityValue);
129 virtual ResourcePriority priorityFromObservers() { return ResourcePriority() ; } 129 virtual ResourcePriority priorityFromObservers() { return ResourcePriority() ; }
130 130
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 364
365 Resource::Type m_type; 365 Resource::Type m_type;
366 }; 366 };
367 367
368 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \ 368 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \
369 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, resource->getType( ) == Resource::typeName, resource.getType() == Resource::typeName); 369 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, resource->getType( ) == Resource::typeName, resource.getType() == Resource::typeName);
370 370
371 } // namespace blink 371 } // namespace blink
372 372
373 #endif 373 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698