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

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

Issue 1378743002: Refactor the API for setting dynamic resource load priorities (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Better names / cleanup Created 5 years, 2 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 ResourceRequest& mutableResourceRequest() { return m_resourceRequest; } 122 ResourceRequest& mutableResourceRequest() { return m_resourceRequest; }
123 const ResourceRequest& resourceRequest() const { return m_resourceRequest; } 123 const ResourceRequest& resourceRequest() const { return m_resourceRequest; }
124 const ResourceRequest& lastResourceRequest() const; 124 const ResourceRequest& lastResourceRequest() const;
125 125
126 const KURL& url() const { return m_resourceRequest.url();} 126 const KURL& url() const { return m_resourceRequest.url();}
127 Type type() const { return static_cast<Type>(m_type); } 127 Type type() const { return static_cast<Type>(m_type); }
128 const ResourceLoaderOptions& options() const { return m_options; } 128 const ResourceLoaderOptions& options() const { return m_options; }
129 void setOptions(const ResourceLoaderOptions& options) { m_options = options; } 129 void setOptions(const ResourceLoaderOptions& options) { m_options = options; }
130 130
131 void didChangePriority(ResourceLoadPriority, int intraPriorityValue); 131 void didChangePriority(ResourceLoadPriority, int intraPriorityValue);
132 ResourcePriority priorityFromClients();
132 133
133 void addClient(ResourceClient*); 134 void addClient(ResourceClient*);
134 void removeClient(ResourceClient*); 135 void removeClient(ResourceClient*);
135 bool hasClients() const { return !m_clients.isEmpty() || !m_clientsAwaitingC allback.isEmpty(); } 136 bool hasClients() const { return !m_clients.isEmpty() || !m_clientsAwaitingC allback.isEmpty(); }
136 bool deleteIfPossible(); 137 bool deleteIfPossible();
137 138
138 enum PreloadResult { 139 enum PreloadResult {
139 PreloadNotReferenced, 140 PreloadNotReferenced,
140 PreloadReferenced, 141 PreloadReferenced,
141 PreloadReferencedWhileLoading, 142 PreloadReferencedWhileLoading,
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
440 const char* ResourceTypeName(Resource::Type); 441 const char* ResourceTypeName(Resource::Type);
441 #endif 442 #endif
442 443
443 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \ 444 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \
444 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, resource->type() = = Resource::typeName, resource.type() == Resource::typeName); \ 445 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, resource->type() = = Resource::typeName, resource.type() == Resource::typeName); \
445 inline typeName##Resource* to##typeName##Resource(const ResourcePtr<Resource >& ptr) { return to##typeName##Resource(ptr.get()); } 446 inline typeName##Resource* to##typeName##Resource(const ResourcePtr<Resource >& ptr) { return to##typeName##Resource(ptr.get()); }
446 447
447 } 448 }
448 449
449 #endif 450 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/fetch/FetchContext.h ('k') | third_party/WebKit/Source/core/fetch/Resource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698