| Index: Source/platform/network/ResourceRequest.h
|
| diff --git a/Source/platform/network/ResourceRequest.h b/Source/platform/network/ResourceRequest.h
|
| index 63ae6a786cb3cb09631512b1af6638fcff2948cb..f1499b8cb67f55a97e1e63bc320f55db8274ca88 100644
|
| --- a/Source/platform/network/ResourceRequest.h
|
| +++ b/Source/platform/network/ResourceRequest.h
|
| @@ -161,7 +161,7 @@ public:
|
| void setAllowCookies(bool allowCookies);
|
|
|
| ResourceLoadPriority priority() const;
|
| - void setPriority(ResourceLoadPriority);
|
| + void setPriority(ResourceLoadPriority, int intraPriorityValue = 0);
|
|
|
| bool isConditional() const;
|
|
|
| @@ -231,6 +231,7 @@ private:
|
| bool m_hasUserGesture : 1;
|
| bool m_downloadToFile : 1;
|
| ResourceLoadPriority m_priority;
|
| + int m_intraPriorityValue;
|
| int m_requestorID;
|
| int m_requestorProcessID;
|
| int m_appCacheHostID;
|
| @@ -264,6 +265,7 @@ public:
|
| bool m_hasUserGesture;
|
| bool m_downloadToFile;
|
| ResourceLoadPriority m_priority;
|
| + int m_intraPriorityValue;
|
| int m_requestorID;
|
| int m_requestorProcessID;
|
| int m_appCacheHostID;
|
|
|