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

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

Issue 356723003: Add 'XHR' to the Resource::Type enum, and use it for XHR requests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Preflight. Created 6 years, 6 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/Resource.cpp ('k') | Source/core/fetch/ResourceFetcher.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) 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 using RefCounted<ResourceFetcher>::deref; 84 using RefCounted<ResourceFetcher>::deref;
85 #endif 85 #endif
86 86
87 ResourcePtr<Resource> fetchSynchronously(FetchRequest&); 87 ResourcePtr<Resource> fetchSynchronously(FetchRequest&);
88 ResourcePtr<ImageResource> fetchImage(FetchRequest&); 88 ResourcePtr<ImageResource> fetchImage(FetchRequest&);
89 ResourcePtr<CSSStyleSheetResource> fetchCSSStyleSheet(FetchRequest&); 89 ResourcePtr<CSSStyleSheetResource> fetchCSSStyleSheet(FetchRequest&);
90 ResourcePtr<CSSStyleSheetResource> fetchUserCSSStyleSheet(FetchRequest&); 90 ResourcePtr<CSSStyleSheetResource> fetchUserCSSStyleSheet(FetchRequest&);
91 ResourcePtr<ScriptResource> fetchScript(FetchRequest&); 91 ResourcePtr<ScriptResource> fetchScript(FetchRequest&);
92 ResourcePtr<FontResource> fetchFont(FetchRequest&); 92 ResourcePtr<FontResource> fetchFont(FetchRequest&);
93 ResourcePtr<RawResource> fetchRawResource(FetchRequest&); 93 ResourcePtr<RawResource> fetchRawResource(FetchRequest&);
94 ResourcePtr<RawResource> fetchXMLHttpRequest(FetchRequest&);
94 ResourcePtr<RawResource> fetchMainResource(FetchRequest&, const SubstituteDa ta&); 95 ResourcePtr<RawResource> fetchMainResource(FetchRequest&, const SubstituteDa ta&);
95 ResourcePtr<DocumentResource> fetchSVGDocument(FetchRequest&); 96 ResourcePtr<DocumentResource> fetchSVGDocument(FetchRequest&);
96 ResourcePtr<XSLStyleSheetResource> fetchXSLStyleSheet(FetchRequest&); 97 ResourcePtr<XSLStyleSheetResource> fetchXSLStyleSheet(FetchRequest&);
97 ResourcePtr<Resource> fetchLinkResource(Resource::Type, FetchRequest&); 98 ResourcePtr<Resource> fetchLinkResource(Resource::Type, FetchRequest&);
98 ResourcePtr<RawResource> fetchImport(FetchRequest&); 99 ResourcePtr<RawResource> fetchImport(FetchRequest&);
99 ResourcePtr<RawResource> fetchMedia(FetchRequest&); 100 ResourcePtr<RawResource> fetchMedia(FetchRequest&);
100 ResourcePtr<RawResource> fetchTextTrack(FetchRequest&); 101 ResourcePtr<RawResource> fetchTextTrack(FetchRequest&);
101 102
102 // Logs an access denied message to the console for the specified URL. 103 // Logs an access denied message to the console for the specified URL.
103 void printAccessDeniedMessage(const KURL&) const; 104 void printAccessDeniedMessage(const KURL&) const;
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 void requestPreload(Resource::Type, FetchRequest&, const String& charset); 183 void requestPreload(Resource::Type, FetchRequest&, const String& charset);
183 184
184 enum RevalidationPolicy { Use, Revalidate, Reload, Load }; 185 enum RevalidationPolicy { Use, Revalidate, Reload, Load };
185 RevalidationPolicy determineRevalidationPolicy(Resource::Type, const FetchRe quest&, Resource* existingResource) const; 186 RevalidationPolicy determineRevalidationPolicy(Resource::Type, const FetchRe quest&, Resource* existingResource) const;
186 187
187 void determineTargetType(ResourceRequest&, Resource::Type); 188 void determineTargetType(ResourceRequest&, Resource::Type);
188 ResourceRequestCachePolicy resourceRequestCachePolicy(const ResourceRequest& , Resource::Type); 189 ResourceRequestCachePolicy resourceRequestCachePolicy(const ResourceRequest& , Resource::Type);
189 void addAdditionalRequestHeaders(ResourceRequest&, Resource::Type); 190 void addAdditionalRequestHeaders(ResourceRequest&, Resource::Type);
190 191
191 bool canRequest(Resource::Type, const KURL&, const ResourceLoaderOptions&, b ool forPreload, FetchRequest::OriginRestriction) const; 192 bool canRequest(Resource::Type, const KURL&, const ResourceLoaderOptions&, b ool forPreload, FetchRequest::OriginRestriction) const;
192 bool checkInsecureContent(Resource::Type, const KURL&, MixedContentBlockingT reatment) const; 193 bool checkInsecureContent(Resource::Type, const KURL&) const;
193 194
194 static bool resourceNeedsLoad(Resource*, const FetchRequest&, RevalidationPo licy); 195 static bool resourceNeedsLoad(Resource*, const FetchRequest&, RevalidationPo licy);
195 196
196 void notifyLoadedFromMemoryCache(Resource*); 197 void notifyLoadedFromMemoryCache(Resource*);
197 198
198 void garbageCollectDocumentResourcesTimerFired(Timer<ResourceFetcher>*); 199 void garbageCollectDocumentResourcesTimerFired(Timer<ResourceFetcher>*);
199 void scheduleDocumentResourcesGC(); 200 void scheduleDocumentResourcesGC();
200 201
201 void resourceTimingReportTimerFired(Timer<ResourceFetcher>*); 202 void resourceTimingReportTimerFired(Timer<ResourceFetcher>*);
202 203
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 m_loader->m_allowStaleResources = m_previousState; 267 m_loader->m_allowStaleResources = m_previousState;
267 } 268 }
268 private: 269 private:
269 ResourceFetcher* m_loader; 270 ResourceFetcher* m_loader;
270 bool m_previousState; 271 bool m_previousState;
271 }; 272 };
272 273
273 } // namespace WebCore 274 } // namespace WebCore
274 275
275 #endif 276 #endif
OLDNEW
« no previous file with comments | « Source/core/fetch/Resource.cpp ('k') | Source/core/fetch/ResourceFetcher.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698