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

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

Issue 1304063016: Refactor the API for setting dynamic resource load priorities (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/fetch/FetchContext.h ('k') | Source/core/fetch/Resource.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 ResourceRequest& mutableResourceRequest() { return m_resourceRequest; } 121 ResourceRequest& mutableResourceRequest() { return m_resourceRequest; }
122 const ResourceRequest& resourceRequest() const { return m_resourceRequest; } 122 const ResourceRequest& resourceRequest() const { return m_resourceRequest; }
123 const ResourceRequest& lastResourceRequest() const; 123 const ResourceRequest& lastResourceRequest() const;
124 124
125 const KURL& url() const { return m_resourceRequest.url();} 125 const KURL& url() const { return m_resourceRequest.url();}
126 Type type() const { return static_cast<Type>(m_type); } 126 Type type() const { return static_cast<Type>(m_type); }
127 const ResourceLoaderOptions& options() const { return m_options; } 127 const ResourceLoaderOptions& options() const { return m_options; }
128 void setOptions(const ResourceLoaderOptions& options) { m_options = options; } 128 void setOptions(const ResourceLoaderOptions& options) { m_options = options; }
129 129
130 void didChangePriority(ResourceLoadPriority, int intraPriorityValue); 130 void didChangePriority(ResourceLoadPriority, int intraPriorityValue);
131 ResourcePriority priorityFromClients();
131 132
132 void addClient(ResourceClient*); 133 void addClient(ResourceClient*);
133 void removeClient(ResourceClient*); 134 void removeClient(ResourceClient*);
134 bool hasClients() const { return !m_clients.isEmpty() || !m_clientsAwaitingC allback.isEmpty(); } 135 bool hasClients() const { return !m_clients.isEmpty() || !m_clientsAwaitingC allback.isEmpty(); }
135 bool deleteIfPossible(); 136 bool deleteIfPossible();
136 137
137 enum PreloadResult { 138 enum PreloadResult {
138 PreloadNotReferenced, 139 PreloadNotReferenced,
139 PreloadReferenced, 140 PreloadReferenced,
140 PreloadReferencedWhileLoading, 141 PreloadReferencedWhileLoading,
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
439 const char* ResourceTypeName(Resource::Type); 440 const char* ResourceTypeName(Resource::Type);
440 #endif 441 #endif
441 442
442 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \ 443 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \
443 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, resource->type() = = Resource::typeName, resource.type() == Resource::typeName); \ 444 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, resource->type() = = Resource::typeName, resource.type() == Resource::typeName); \
444 inline typeName##Resource* to##typeName##Resource(const ResourcePtr<Resource >& ptr) { return to##typeName##Resource(ptr.get()); } 445 inline typeName##Resource* to##typeName##Resource(const ResourcePtr<Resource >& ptr) { return to##typeName##Resource(ptr.get()); }
445 446
446 } 447 }
447 448
448 #endif 449 #endif
OLDNEW
« no previous file with comments | « Source/core/fetch/FetchContext.h ('k') | Source/core/fetch/Resource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698