| Index: content/shell/browser/layout_test/notify_done_forwarder.cc
|
| diff --git a/content/shell/browser/layout_test/notify_done_forwarder.cc b/content/shell/browser/layout_test/notify_done_forwarder.cc
|
| index 2a77f9492d6edbdadb285dc781b3e632bd9738b6..b9213938da28cd98a06617ea698c5e323e782699 100644
|
| --- a/content/shell/browser/layout_test/notify_done_forwarder.cc
|
| +++ b/content/shell/browser/layout_test/notify_done_forwarder.cc
|
| @@ -19,15 +19,15 @@ NotifyDoneForwarder::~NotifyDoneForwarder() {}
|
| bool NotifyDoneForwarder::OnMessageReceived(const IPC::Message& message) {
|
| bool handled = true;
|
| IPC_BEGIN_MESSAGE_MAP(NotifyDoneForwarder, message)
|
| - IPC_MESSAGE_HANDLER(ShellViewHostMsg_TestFinishedInSecondaryWindow,
|
| - OnTestFinishedInSecondaryWindow)
|
| + IPC_MESSAGE_HANDLER(ShellViewHostMsg_TestFinishedInSecondaryRenderer,
|
| + OnTestFinishedInSecondaryRenderer)
|
| IPC_MESSAGE_UNHANDLED(handled = false)
|
| IPC_END_MESSAGE_MAP()
|
| return handled;
|
| }
|
|
|
| -void NotifyDoneForwarder::OnTestFinishedInSecondaryWindow() {
|
| - BlinkTestController::Get()->TestFinishedInSecondaryWindow();
|
| +void NotifyDoneForwarder::OnTestFinishedInSecondaryRenderer() {
|
| + BlinkTestController::Get()->TestFinishedInSecondaryRenderer();
|
| }
|
|
|
| } // namespace content
|
|
|