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

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

Issue 561153002: Mixed Content: Migrate ResourceFetcher to the static mixed content checker. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixing comment and test. Created 6 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
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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 void requestPreload(Resource::Type, FetchRequest&, const String& charset); 181 void requestPreload(Resource::Type, FetchRequest&, const String& charset);
182 182
183 enum RevalidationPolicy { Use, Revalidate, Reload, Load }; 183 enum RevalidationPolicy { Use, Revalidate, Reload, Load };
184 RevalidationPolicy determineRevalidationPolicy(Resource::Type, const FetchRe quest&, Resource* existingResource) const; 184 RevalidationPolicy determineRevalidationPolicy(Resource::Type, const FetchRe quest&, Resource* existingResource) const;
185 185
186 void determineRequestContext(ResourceRequest&, Resource::Type); 186 void determineRequestContext(ResourceRequest&, Resource::Type);
187 ResourceRequestCachePolicy resourceRequestCachePolicy(const ResourceRequest& , Resource::Type); 187 ResourceRequestCachePolicy resourceRequestCachePolicy(const ResourceRequest& , Resource::Type);
188 void addAdditionalRequestHeaders(ResourceRequest&, Resource::Type); 188 void addAdditionalRequestHeaders(ResourceRequest&, Resource::Type);
189 189
190 bool canRequest(Resource::Type, const ResourceRequest&, const KURL&, const R esourceLoaderOptions&, bool forPreload, FetchRequest::OriginRestriction) const; 190 bool canRequest(Resource::Type, const ResourceRequest&, const KURL&, const R esourceLoaderOptions&, bool forPreload, FetchRequest::OriginRestriction) const;
191 bool checkInsecureContent(Resource::Type, const KURL&, LocalFrame*, MixedCon tentBlockingTreatment) const;
192 191
193 static bool resourceNeedsLoad(Resource*, const FetchRequest&, RevalidationPo licy); 192 static bool resourceNeedsLoad(Resource*, const FetchRequest&, RevalidationPo licy);
194 193
195 void notifyLoadedFromMemoryCache(Resource*); 194 void notifyLoadedFromMemoryCache(Resource*);
196 195
197 void garbageCollectDocumentResourcesTimerFired(Timer<ResourceFetcher>*); 196 void garbageCollectDocumentResourcesTimerFired(Timer<ResourceFetcher>*);
198 void scheduleDocumentResourcesGC(); 197 void scheduleDocumentResourcesGC();
199 198
200 void resourceTimingReportTimerFired(Timer<ResourceFetcher>*); 199 void resourceTimingReportTimerFired(Timer<ResourceFetcher>*);
201 200
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 m_loader->m_allowStaleResources = m_previousState; 264 m_loader->m_allowStaleResources = m_previousState;
266 } 265 }
267 private: 266 private:
268 ResourceFetcher* m_loader; 267 ResourceFetcher* m_loader;
269 bool m_previousState; 268 bool m_previousState;
270 }; 269 };
271 270
272 } // namespace blink 271 } // namespace blink
273 272
274 #endif 273 #endif
OLDNEW
« no previous file with comments | « LayoutTests/http/tests/serviceworker/fetch-mixed-content-expected.txt ('k') | Source/core/fetch/ResourceFetcher.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698