OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/shell/browser/layout_test/secondary_test_window_observer.h" | 5 #include "content/shell/browser/layout_test/secondary_test_window_observer.h" |
6 | 6 |
7 #include "content/shell/browser/layout_test/blink_test_controller.h" | 7 #include "content/shell/browser/layout_test/blink_test_controller.h" |
8 #include "content/shell/common/shell_messages.h" | 8 #include "content/shell/common/shell_messages.h" |
9 | 9 |
10 namespace content { | 10 namespace content { |
(...skipping 11 matching lines...) Expand all Loading... |
22 bool handled = true; | 22 bool handled = true; |
23 IPC_BEGIN_MESSAGE_MAP(SecondaryTestWindowObserver, message) | 23 IPC_BEGIN_MESSAGE_MAP(SecondaryTestWindowObserver, message) |
24 IPC_MESSAGE_HANDLER(ShellViewHostMsg_TestFinishedInSecondaryRenderer, | 24 IPC_MESSAGE_HANDLER(ShellViewHostMsg_TestFinishedInSecondaryRenderer, |
25 OnTestFinishedInSecondaryRenderer) | 25 OnTestFinishedInSecondaryRenderer) |
26 IPC_MESSAGE_UNHANDLED(handled = false) | 26 IPC_MESSAGE_UNHANDLED(handled = false) |
27 IPC_END_MESSAGE_MAP() | 27 IPC_END_MESSAGE_MAP() |
28 return handled; | 28 return handled; |
29 } | 29 } |
30 | 30 |
31 void SecondaryTestWindowObserver::OnTestFinishedInSecondaryRenderer() { | 31 void SecondaryTestWindowObserver::OnTestFinishedInSecondaryRenderer() { |
32 BlinkTestController::Get()->TestFinishedInSecondaryRenderer(); | 32 BlinkTestController::Get()->OnTestFinishedInSecondaryRenderer(); |
33 } | 33 } |
34 | 34 |
35 void SecondaryTestWindowObserver::RenderFrameCreated( | 35 void SecondaryTestWindowObserver::RenderFrameCreated( |
36 RenderFrameHost* render_frame_host) { | 36 RenderFrameHost* render_frame_host) { |
37 DCHECK(!BlinkTestController::Get()->IsMainWindow( | 37 DCHECK(!BlinkTestController::Get()->IsMainWindow( |
38 WebContents::FromRenderFrameHost(render_frame_host))); | 38 WebContents::FromRenderFrameHost(render_frame_host))); |
39 BlinkTestController::Get()->HandleNewRenderFrameHost(render_frame_host); | 39 BlinkTestController::Get()->HandleNewRenderFrameHost(render_frame_host); |
40 } | 40 } |
41 | 41 |
42 void SecondaryTestWindowObserver::RenderFrameHostChanged( | 42 void SecondaryTestWindowObserver::RenderFrameHostChanged( |
43 RenderFrameHost* old_host, | 43 RenderFrameHost* old_host, |
44 RenderFrameHost* new_host) { | 44 RenderFrameHost* new_host) { |
45 DCHECK(!BlinkTestController::Get()->IsMainWindow( | 45 DCHECK(!BlinkTestController::Get()->IsMainWindow( |
46 WebContents::FromRenderFrameHost(new_host))); | 46 WebContents::FromRenderFrameHost(new_host))); |
47 BlinkTestController::Get()->HandleNewRenderFrameHost(new_host); | 47 BlinkTestController::Get()->HandleNewRenderFrameHost(new_host); |
48 } | 48 } |
49 | 49 |
50 } // namespace content | 50 } // namespace content |
OLD | NEW |