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

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

Issue 1009583003: Add CSP header for resources with an active policy (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: test tweaks Created 5 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 rights reserved. 4 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
5 Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ 5 Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/
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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 void preCacheSubstituteDataForMainResource(const FetchRequest&, const Substi tuteData&); 192 void preCacheSubstituteDataForMainResource(const FetchRequest&, const Substi tuteData&);
193 void storeResourceTimingInitiatorInformation(Resource*); 193 void storeResourceTimingInitiatorInformation(Resource*);
194 bool scheduleArchiveLoad(Resource*, const ResourceRequest&); 194 bool scheduleArchiveLoad(Resource*, const ResourceRequest&);
195 195
196 enum RevalidationPolicy { Use, Revalidate, Reload, Load }; 196 enum RevalidationPolicy { Use, Revalidate, Reload, Load };
197 RevalidationPolicy determineRevalidationPolicy(Resource::Type, const FetchRe quest&, Resource* existingResource) const; 197 RevalidationPolicy determineRevalidationPolicy(Resource::Type, const FetchRe quest&, Resource* existingResource) const;
198 198
199 void determineRequestContext(ResourceRequest&, Resource::Type); 199 void determineRequestContext(ResourceRequest&, Resource::Type);
200 void addAdditionalRequestHeaders(ResourceRequest&, Resource::Type); 200 void addAdditionalRequestHeaders(ResourceRequest&, Resource::Type);
201 void upgradeInsecureRequest(FetchRequest&); 201 void upgradeInsecureRequest(FetchRequest&);
202 void addClientHintsIfNeccessary(FetchRequest&); 202 void addClientHintsIfNecessary(FetchRequest&);
203 void addCSPHeaderIfNecessary(Resource::Type, FetchRequest&);
203 204
204 bool canRequest(Resource::Type, const ResourceRequest&, const KURL&, const R esourceLoaderOptions&, bool forPreload, FetchRequest::OriginRestriction) const; 205 bool canRequest(Resource::Type, const ResourceRequest&, const KURL&, const R esourceLoaderOptions&, bool forPreload, FetchRequest::OriginRestriction) const;
205 206
206 static bool resourceNeedsLoad(Resource*, const FetchRequest&, RevalidationPo licy); 207 static bool resourceNeedsLoad(Resource*, const FetchRequest&, RevalidationPo licy);
207 208
208 void notifyLoadedFromMemoryCache(Resource*); 209 void notifyLoadedFromMemoryCache(Resource*);
209 210
210 void garbageCollectDocumentResourcesTimerFired(Timer<ResourceFetcher>*); 211 void garbageCollectDocumentResourcesTimerFired(Timer<ResourceFetcher>*);
211 void scheduleDocumentResourcesGC(); 212 void scheduleDocumentResourcesGC();
212 213
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 m_loader->m_allowStaleResources = m_previousState; 277 m_loader->m_allowStaleResources = m_previousState;
277 } 278 }
278 private: 279 private:
279 ResourceFetcher* m_loader; 280 ResourceFetcher* m_loader;
280 bool m_previousState; 281 bool m_previousState;
281 }; 282 };
282 283
283 } // namespace blink 284 } // namespace blink
284 285
285 #endif 286 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698