Index: content/shell/browser/layout_test/blink_test_controller.cc |
diff --git a/content/shell/browser/layout_test/blink_test_controller.cc b/content/shell/browser/layout_test/blink_test_controller.cc |
index 9f4b1b7ee806ac37dd880556f60bd8441986c48f..b823e7feca30e350616fffe5cc4b047db8479efd 100644 |
--- a/content/shell/browser/layout_test/blink_test_controller.cc |
+++ b/content/shell/browser/layout_test/blink_test_controller.cc |
@@ -413,8 +413,6 @@ |
IPC_MESSAGE_HANDLER(ShellViewHostMsg_ClearDevToolsLocalStorage, |
OnClearDevToolsLocalStorage) |
IPC_MESSAGE_HANDLER(ShellViewHostMsg_ShowDevTools, OnShowDevTools) |
- IPC_MESSAGE_HANDLER(ShellViewHostMsg_EvaluateInDevTools, |
- OnEvaluateInDevTools) |
IPC_MESSAGE_HANDLER(ShellViewHostMsg_CloseDevTools, OnCloseDevTools) |
IPC_MESSAGE_HANDLER(ShellViewHostMsg_GoToOffset, OnGoToOffset) |
IPC_MESSAGE_HANDLER(ShellViewHostMsg_Reload, OnReload) |
@@ -765,12 +763,6 @@ |
} |
devtools_frontend_->Activate(); |
devtools_frontend_->Focus(); |
-} |
- |
-void BlinkTestController::OnEvaluateInDevTools( |
- int call_id, const std::string& script) { |
- if (devtools_frontend_) |
- devtools_frontend_->EvaluateInFrontend(call_id, script); |
} |
void BlinkTestController::OnCloseDevTools() { |