diff options
Diffstat (limited to 'chrome/test/in_process_browser_test.h')
-rw-r--r-- | chrome/test/in_process_browser_test.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/test/in_process_browser_test.h b/chrome/test/in_process_browser_test.h index 64bf1ea..bec71d9 100644 --- a/chrome/test/in_process_browser_test.h +++ b/chrome/test/in_process_browser_test.h @@ -74,6 +74,9 @@ class InProcessBrowserTest : public testing::Test { // Invoked when a test is not finishing in a timely manner. void TimedOut(); + // Sets Initial Timeout value. + void SetInitialTimeoutInMS(int initial_timeout); + // Starts an HTTP server. HTTPTestServer* StartHTTPServer(); @@ -118,6 +121,9 @@ class InProcessBrowserTest : public testing::Test { // Saved to restore the value of RenderProcessHost::run_renderer_in_process. bool original_single_process_; + // Initial timeout value in ms. + int initial_timeout_; + DISALLOW_COPY_AND_ASSIGN(InProcessBrowserTest); }; |