Index: content/shell/browser/layout_test/blink_test_controller.h |
diff --git a/content/shell/browser/layout_test/blink_test_controller.h b/content/shell/browser/layout_test/blink_test_controller.h |
index 6ff85f72d26255f663aa419bae69b87c04687893..47d3760466253ddecf9bcf6c8174f0e890e13db3 100644 |
--- a/content/shell/browser/layout_test/blink_test_controller.h |
+++ b/content/shell/browser/layout_test/blink_test_controller.h |
@@ -187,7 +187,8 @@ class BlinkTestController : public base::NonThreadSafe, |
static BlinkTestController* instance_; |
void DiscardMainWindow(); |
- void SendTestConfiguration(); |
+ void HandleNewRenderFrameHost( |
+ RenderFrameHost* frame_representing_target_process); |
// Message handlers. |
void OnAudioDump(const std::vector<unsigned char>& audio_dump); |
@@ -225,9 +226,9 @@ class BlinkTestController : public base::NonThreadSafe, |
// The PID of the render process of the render view host of main_window_. |
int current_pid_; |
- // True if we should set the test configuration to the next RenderViewHost |
- // created. |
- bool send_configuration_to_next_host_; |
+ // Tracks if (during the current test) we have already sent test configuration |
+ // to a renderer process. |
+ bool need_to_send_test_configuration_to_renderer_; |
jochen (gone - plz use gerrit)
2016/03/08 16:28:58
the name is a bit confusing, because in fact you'l
Łukasz Anforowicz
2016/03/08 18:12:46
Done. I talked with alexmos@ and he helped me pic
|
// What phase of running an individual test we are currently in. |
TestPhase test_phase_; |