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

Side by Side Diff: third_party/WebKit/Source/platform/loader/fetch/ResourceFetcher.h

Issue 2843013002: Revert of Don't lower priority for scripts inserted by doc.write (Closed)
Patch Set: Created 3 years, 7 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 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
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 FetchParameters::SpeculativePreloadType = 171 bool is_speculative_preload = false,
172 FetchParameters::SpeculativePreloadType::kNotSpeculative,
173 bool is_link_preload = false); 172 bool is_link_preload = false);
174 173
175 enum PrepareRequestResult { kAbort, kContinue, kBlock }; 174 enum PrepareRequestResult { kAbort, kContinue, kBlock };
176 175
177 PrepareRequestResult PrepareRequest(FetchParameters&, 176 PrepareRequestResult PrepareRequest(FetchParameters&,
178 const ResourceFactory&, 177 const ResourceFactory&,
179 const SubstituteData&, 178 const SubstituteData&,
180 unsigned long identifier, 179 unsigned long identifier,
181 ResourceRequestBlockedReason&); 180 ResourceRequestBlockedReason&);
182 181
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 } 289 }
291 290
292 private: 291 private:
293 Member<ResourceFetcher> loader_; 292 Member<ResourceFetcher> loader_;
294 bool previous_state_; 293 bool previous_state_;
295 }; 294 };
296 295
297 } // namespace blink 296 } // namespace blink
298 297
299 #endif // ResourceFetcher_h 298 #endif // ResourceFetcher_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698