| Index: content/shell/renderer/test_runner/WebFrameTestProxy.h
|
| diff --git a/content/shell/renderer/test_runner/WebFrameTestProxy.h b/content/shell/renderer/test_runner/WebFrameTestProxy.h
|
| index b4c63a050a451a8a8c60a0a1a812fc5f8d3528bb..c8429246537e4c8c6411b24b0902cef5c1cfa9b6 100644
|
| --- a/content/shell/renderer/test_runner/WebFrameTestProxy.h
|
| +++ b/content/shell/renderer/test_runner/WebFrameTestProxy.h
|
| @@ -127,12 +127,12 @@ public:
|
| m_baseProxy->didReceiveResponse(frame, identifier, response);
|
| Base::didReceiveResponse(frame, identifier, response);
|
| }
|
| - virtual void didChangeResourcePriority(blink::WebFrame* frame, unsigned identifier, const blink::WebURLRequest::Priority& priority)
|
| + virtual void didChangeResourcePriority(blink::WebFrame* frame, unsigned identifier, const blink::WebURLRequest::Priority& priority, int intra_priority_value)
|
| {
|
| // This is not implemented in RenderFrameImpl, so need to explicitly call
|
| // into the base proxy.
|
| - m_baseProxy->didChangeResourcePriority(frame, identifier, priority);
|
| - Base::didChangeResourcePriority(frame, identifier, priority);
|
| + m_baseProxy->didChangeResourcePriority(frame, identifier, priority, intra_priority_value);
|
| + Base::didChangeResourcePriority(frame, identifier, priority, intra_priority_value);
|
| }
|
| virtual void didFinishResourceLoad(blink::WebFrame* frame, unsigned identifier)
|
| {
|
|
|