Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(182)

Unified Diff: content/shell/webkit_test_runner.cc

Issue 12296007: [content shell] hook up navigation related WebTestDelegate methods (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/shell/webkit_test_controller.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() {
« no previous file with comments | « content/shell/webkit_test_controller.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698