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

Side by Side Diff: third_party/WebKit/Source/platform/loader/fetch/ResourceFetcher.h

Issue 2753053004: Improve preload related priorities (Closed)
Patch Set: Created 3 years, 9 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) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All 4 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All
5 rights reserved. 5 rights reserved.
6 Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ 6 Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/
7 7
8 This library is free software; you can redistribute it and/or 8 This library is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Library General Public 9 modify it under the terms of the GNU Library General Public
10 License as published by the Free Software Foundation; either 10 License as published by the Free Software Foundation; either
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 void initializeRevalidation(ResourceRequest&, Resource*); 161 void initializeRevalidation(ResourceRequest&, Resource*);
162 Resource* createResourceForLoading(FetchRequest&, 162 Resource* createResourceForLoading(FetchRequest&,
163 const String& charset, 163 const String& charset,
164 const ResourceFactory&); 164 const ResourceFactory&);
165 void storePerformanceTimingInitiatorInformation(Resource*); 165 void storePerformanceTimingInitiatorInformation(Resource*);
166 ResourceLoadPriority computeLoadPriority( 166 ResourceLoadPriority computeLoadPriority(
167 Resource::Type, 167 Resource::Type,
168 const ResourceRequest&, 168 const ResourceRequest&,
169 ResourcePriority::VisibilityStatus, 169 ResourcePriority::VisibilityStatus,
170 FetchRequest::DeferOption = FetchRequest::NoDefer, 170 FetchRequest::DeferOption = FetchRequest::NoDefer,
171 bool speculativePreload = false); 171 bool isSpeculativePreload = false,
172 bool isLinkPreload = false);
172 173
173 enum PrepareRequestResult { Abort, Continue, Block }; 174 enum PrepareRequestResult { Abort, Continue, Block };
174 175
175 PrepareRequestResult prepareRequest(FetchRequest&, 176 PrepareRequestResult prepareRequest(FetchRequest&,
176 const ResourceFactory&, 177 const ResourceFactory&,
177 const SubstituteData&, 178 const SubstituteData&,
178 unsigned long identifier, 179 unsigned long identifier,
179 ResourceRequestBlockedReason&); 180 ResourceRequestBlockedReason&);
180 181
181 Resource* resourceForStaticData(const FetchRequest&, 182 Resource* resourceForStaticData(const FetchRequest&,
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 } 284 }
284 285
285 private: 286 private:
286 Member<ResourceFetcher> m_loader; 287 Member<ResourceFetcher> m_loader;
287 bool m_previousState; 288 bool m_previousState;
288 }; 289 };
289 290
290 } // namespace blink 291 } // namespace blink
291 292
292 #endif // ResourceFetcher_h 293 #endif // ResourceFetcher_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698