Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 96 void preloadStarted(Resource*); | 96 void preloadStarted(Resource*); |
| 97 void printPreloadStats(); | 97 void printPreloadStats(); |
| 98 | 98 |
| 99 MHTMLArchive* archive() const { return m_archive.get(); } | 99 MHTMLArchive* archive() const { return m_archive.get(); } |
| 100 ArchiveResource* createArchive(Resource*); | 100 ArchiveResource* createArchive(Resource*); |
| 101 | 101 |
| 102 void setDefersLoading(bool); | 102 void setDefersLoading(bool); |
| 103 void stopFetching(); | 103 void stopFetching(); |
| 104 bool isFetching() const; | 104 bool isFetching() const; |
| 105 | 105 |
| 106 void didLoadResource(Resource*); | |
| 107 bool willFollowRedirect(Resource*, ResourceRequest&, const ResourceResponse& ); | 106 bool willFollowRedirect(Resource*, ResourceRequest&, const ResourceResponse& ); |
| 108 void didFinishLoading(Resource*, double finishTime, int64_t encodedDataLengt h); | 107 void didFinishLoading(Resource*, double finishTime, int64_t encodedDataLengt h, bool isFirstPartInMultipart); |
|
yhirano
2016/05/13 10:33:03
It would be good to replace this boolean with enum
Nate Chapin
2016/05/13 22:27:41
Done.
| |
| 109 void didFailLoading(const Resource*, const ResourceError&); | 108 void didFailLoading(Resource*, const ResourceError&); |
| 110 void didReceiveResponse(const Resource*, const ResourceResponse&); | 109 void didReceiveResponse(const Resource*, const ResourceResponse&); |
| 111 void didReceiveData(const Resource*, const char* data, int dataLength, int e ncodedDataLength); | 110 void didReceiveData(const Resource*, const char* data, int dataLength, int e ncodedDataLength); |
| 112 void didDownloadData(const Resource*, int dataLength, int encodedDataLength) ; | 111 void didDownloadData(const Resource*, int dataLength, int encodedDataLength) ; |
| 113 void willStartLoadingResource(Resource*, ResourceLoader*, ResourceRequest&); | 112 void willStartLoadingResource(Resource*, ResourceLoader*, ResourceRequest&); |
| 114 bool defersLoading() const; | 113 bool defersLoading() const; |
| 115 | 114 |
| 116 void moveResourceLoaderToNonBlocking(ResourceLoader*); | |
| 117 void removeResourceLoader(ResourceLoader*); | |
| 118 | |
| 119 enum AccessControlLoggingDecision { | 115 enum AccessControlLoggingDecision { |
| 120 ShouldLogAccessControlErrors, | 116 ShouldLogAccessControlErrors, |
| 121 ShouldNotLogAccessControlErrors | 117 ShouldNotLogAccessControlErrors |
| 122 }; | 118 }; |
| 123 bool canAccessResource(Resource*, SecurityOrigin*, const KURL&, AccessContro lLoggingDecision) const; | 119 bool canAccessResource(Resource*, SecurityOrigin*, const KURL&, AccessContro lLoggingDecision) const; |
| 124 bool isControlledByServiceWorker() const; | 120 bool isControlledByServiceWorker() const; |
| 125 | 121 |
| 126 void acceptDataFromThreadedReceiver(unsigned long identifier, const char* da ta, int dataLength, int encodedDataLength); | 122 void acceptDataFromThreadedReceiver(unsigned long identifier, const char* da ta, int dataLength, int encodedDataLength); |
| 127 | 123 |
| 128 ResourceLoadPriority loadPriority(Resource::Type, const FetchRequest&, Resou rcePriority::VisibilityStatus = ResourcePriority::NotVisible); | 124 ResourceLoadPriority loadPriority(Resource::Type, const FetchRequest&, Resou rcePriority::VisibilityStatus = ResourcePriority::NotVisible); |
| (...skipping 28 matching lines...) Expand all Loading... | |
| 157 Resource* createResourceForLoading(FetchRequest&, const String& charset, con st ResourceFactory&); | 153 Resource* createResourceForLoading(FetchRequest&, const String& charset, con st ResourceFactory&); |
| 158 void storeResourceTimingInitiatorInformation(Resource*); | 154 void storeResourceTimingInitiatorInformation(Resource*); |
| 159 | 155 |
| 160 Resource* resourceForStaticData(const FetchRequest&, const ResourceFactory&, const SubstituteData&); | 156 Resource* resourceForStaticData(const FetchRequest&, const ResourceFactory&, const SubstituteData&); |
| 161 | 157 |
| 162 // RevalidationPolicy enum values are used in UMAs https://crbug.com/579496. | 158 // RevalidationPolicy enum values are used in UMAs https://crbug.com/579496. |
| 163 enum RevalidationPolicy { Use, Revalidate, Reload, Load }; | 159 enum RevalidationPolicy { Use, Revalidate, Reload, Load }; |
| 164 RevalidationPolicy determineRevalidationPolicy(Resource::Type, const FetchRe quest&, Resource* existingResource, bool isStaticData) const; | 160 RevalidationPolicy determineRevalidationPolicy(Resource::Type, const FetchRe quest&, Resource* existingResource, bool isStaticData) const; |
| 165 | 161 |
| 166 void moveCachedNonBlockingResourceToBlocking(Resource*, const FetchRequest&) ; | 162 void moveCachedNonBlockingResourceToBlocking(Resource*, const FetchRequest&) ; |
| 163 void moveResourceLoaderToNonBlocking(ResourceLoader*); | |
| 164 void removeResourceLoader(ResourceLoader*); | |
| 167 | 165 |
| 168 void initializeResourceRequest(ResourceRequest&, Resource::Type, FetchReques t::DeferOption); | 166 void initializeResourceRequest(ResourceRequest&, Resource::Type, FetchReques t::DeferOption); |
| 169 | 167 |
| 170 bool resourceNeedsLoad(Resource*, const FetchRequest&, RevalidationPolicy); | 168 bool resourceNeedsLoad(Resource*, const FetchRequest&, RevalidationPolicy); |
| 171 bool shouldDeferImageLoad(const KURL&) const; | 169 bool shouldDeferImageLoad(const KURL&) const; |
| 172 | 170 |
| 173 void resourceTimingReportTimerFired(Timer<ResourceFetcher>*); | 171 void resourceTimingReportTimerFired(Timer<ResourceFetcher>*); |
| 174 | 172 |
| 175 void reloadImagesIfNotDeferred(); | 173 void reloadImagesIfNotDeferred(); |
| 176 | 174 |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 235 m_loader->m_allowStaleResources = m_previousState; | 233 m_loader->m_allowStaleResources = m_previousState; |
| 236 } | 234 } |
| 237 private: | 235 private: |
| 238 Member<ResourceFetcher> m_loader; | 236 Member<ResourceFetcher> m_loader; |
| 239 bool m_previousState; | 237 bool m_previousState; |
| 240 }; | 238 }; |
| 241 | 239 |
| 242 } // namespace blink | 240 } // namespace blink |
| 243 | 241 |
| 244 #endif // ResourceFetcher_h | 242 #endif // ResourceFetcher_h |
| OLD | NEW |