| Index: content/shell/webkit_test_runner.cc
|
| diff --git a/content/shell/webkit_test_runner.cc b/content/shell/webkit_test_runner.cc
|
| index a0bf098f202124f0a39addc7bfe3f0610f1cb5dd..c9bab815089c1437f8e69535fc55e20a5076e579 100644
|
| --- a/content/shell/webkit_test_runner.cc
|
| +++ b/content/shell/webkit_test_runner.cc
|
| @@ -446,19 +446,17 @@ int WebKitTestRunner::windowCount() {
|
| }
|
|
|
| void WebKitTestRunner::goToOffset(int offset) {
|
| - Send(new ShellViewHostMsg_NotImplemented(
|
| - routing_id(), "WebKitTestRunner", "goToOffset"));
|
| + Send(new ShellViewHostMsg_GoToOffset(routing_id(), offset));
|
| }
|
|
|
| void WebKitTestRunner::reload() {
|
| - Send(new ShellViewHostMsg_NotImplemented(
|
| - routing_id(), "WebKitTestRunner", "reload"));
|
| + Send(new ShellViewHostMsg_Reload(routing_id()));
|
| }
|
|
|
| void WebKitTestRunner::loadURLForFrame(const WebURL& url,
|
| const std::string& frame_name) {
|
| - Send(new ShellViewHostMsg_NotImplemented(
|
| - routing_id(), "WebKitTestRunner", "loadURLForFrame"));
|
| + Send(new ShellViewHostMsg_LoadURLForFrame(
|
| + routing_id(), url, frame_name));
|
| }
|
|
|
| bool WebKitTestRunner::allowExternalPages() {
|
|
|