| Index: Source/core/fetch/Resource.cpp
|
| diff --git a/Source/core/fetch/Resource.cpp b/Source/core/fetch/Resource.cpp
|
| index b02293e930a253614f7a6f7563347453d50a36d2..2672ef2ca9dfe9d0bbaf767cecef7deffd9f20bc 100644
|
| --- a/Source/core/fetch/Resource.cpp
|
| +++ b/Source/core/fetch/Resource.cpp
|
| @@ -869,10 +869,10 @@ size_t Resource::overheadSize() const
|
| return sizeof(Resource) + m_response.memoryUsage() + kAverageClientsHashMapSize + m_resourceRequest.url().string().length() * 2;
|
| }
|
|
|
| -void Resource::didChangePriority(ResourceLoadPriority loadPriority)
|
| +void Resource::didChangePriority(ResourceLoadPriority loadPriority, int intraPriorityValue)
|
| {
|
| if (m_loader)
|
| - m_loader->didChangePriority(loadPriority);
|
| + m_loader->didChangePriority(loadPriority, intraPriorityValue);
|
| }
|
|
|
| Resource::ResourceCallback* Resource::ResourceCallback::callbackHandler()
|
|
|