| Index: content/shell/test_runner/web_frame_test_proxy.h
|
| diff --git a/content/shell/test_runner/web_frame_test_proxy.h b/content/shell/test_runner/web_frame_test_proxy.h
|
| index a70c95820f5683ca6c28c8e7ddaaa0b07ad4a810..13d7e8ed2d9e20bae35ff1a73530aaba2c765157 100644
|
| --- a/content/shell/test_runner/web_frame_test_proxy.h
|
| +++ b/content/shell/test_runner/web_frame_test_proxy.h
|
| @@ -125,11 +125,10 @@ class WebFrameTestProxy : public Base, public WebFrameTestProxyBase {
|
| Base::DidCommitProvisionalLoad(item, commit_type);
|
| }
|
|
|
| - void DidReceiveTitle(blink::WebLocalFrame* frame,
|
| - const blink::WebString& title,
|
| + void DidReceiveTitle(const blink::WebString& title,
|
| blink::WebTextDirection direction) override {
|
| - test_client()->DidReceiveTitle(frame, title, direction);
|
| - Base::DidReceiveTitle(frame, title, direction);
|
| + test_client()->DidReceiveTitle(title, direction);
|
| + Base::DidReceiveTitle(title, direction);
|
| }
|
|
|
| void DidChangeIcon(blink::WebIconURL::Type icon_type) override {
|
|
|