| Index: content/browser/loader/resource_scheduler.h
|
| diff --git a/content/browser/loader/resource_scheduler.h b/content/browser/loader/resource_scheduler.h
|
| index bcb3213a3d691178543d3a21c79ab592afcd8a4a..ba070c2aed939c204397166e4585341a01ecbf67 100644
|
| --- a/content/browser/loader/resource_scheduler.h
|
| +++ b/content/browser/loader/resource_scheduler.h
|
| @@ -97,11 +97,14 @@ class CONTENT_EXPORT ResourceScheduler : public base::NonThreadSafe {
|
| // Returns true if at least one client is currently loading.
|
| bool HasLoadingClients() const;
|
|
|
| - // Update the priority for |request|. Modifies request->priority(), and may
|
| + // Updates the priority for |request|. Modifies request->priority(), and may
|
| // start the request loading if it wasn't already started.
|
| void ReprioritizeRequest(net::URLRequest* request,
|
| net::RequestPriority new_priority,
|
| int intra_priority_value);
|
| + // Same as above, but keeps the existing intra priority value.
|
| + void ReprioritizeRequest(net::URLRequest* request,
|
| + net::RequestPriority new_priority);
|
|
|
| private:
|
| // Returns the maximum number of delayable requests to all be in-flight at
|
|
|