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 7756e9f9bff44a9a64fc4fd67fd4786155cb1d57..fbfd0a31ed67ef0e38e1c7427d33ce31a5b4ffa9 100644 |
--- a/content/shell/renderer/test_runner/WebFrameTestProxy.h |
+++ b/content/shell/renderer/test_runner/WebFrameTestProxy.h |
@@ -140,12 +140,12 @@ public: |
m_baseProxy->didReceiveResponse(frame, identifier, response); |
Base::didReceiveResponse(frame, identifier, response); |
} |
- virtual void didChangeResourcePriority(blink::WebLocalFrame* frame, unsigned identifier, const blink::WebURLRequest::Priority& priority) |
+ virtual void didChangeResourcePriority(blink::WebLocalFrame* 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::WebLocalFrame* frame, unsigned identifier) |
{ |