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 | 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 Loading... |
161 void InitializeRevalidation(ResourceRequest&, Resource*); | 161 void InitializeRevalidation(ResourceRequest&, Resource*); |
162 Resource* CreateResourceForLoading(FetchParameters&, | 162 Resource* CreateResourceForLoading(FetchParameters&, |
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 FetchParameters::DeferOption = FetchParameters::kNoDefer, | 170 FetchParameters::DeferOption = FetchParameters::kNoDefer, |
171 bool is_speculative_preload = false, | 171 FetchParameters::SpeculativePreloadType = |
| 172 FetchParameters::SpeculativePreloadType::kNotSpeculative, |
172 bool is_link_preload = false); | 173 bool is_link_preload = false); |
173 | 174 |
174 enum PrepareRequestResult { kAbort, kContinue, kBlock }; | 175 enum PrepareRequestResult { kAbort, kContinue, kBlock }; |
175 | 176 |
176 PrepareRequestResult PrepareRequest(FetchParameters&, | 177 PrepareRequestResult PrepareRequest(FetchParameters&, |
177 const ResourceFactory&, | 178 const ResourceFactory&, |
178 const SubstituteData&, | 179 const SubstituteData&, |
179 unsigned long identifier, | 180 unsigned long identifier, |
180 ResourceRequestBlockedReason&); | 181 ResourceRequestBlockedReason&); |
181 | 182 |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 } | 273 } |
273 | 274 |
274 private: | 275 private: |
275 Member<ResourceFetcher> loader_; | 276 Member<ResourceFetcher> loader_; |
276 bool previous_state_; | 277 bool previous_state_; |
277 }; | 278 }; |
278 | 279 |
279 } // namespace blink | 280 } // namespace blink |
280 | 281 |
281 #endif // ResourceFetcher_h | 282 #endif // ResourceFetcher_h |
OLD | NEW |