diff options
Diffstat (limited to 'content/shell/webkit_test_runner_host.h')
-rw-r--r-- | content/shell/webkit_test_runner_host.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/content/shell/webkit_test_runner_host.h b/content/shell/webkit_test_runner_host.h index 8616be6..53573bf 100644 --- a/content/shell/webkit_test_runner_host.h +++ b/content/shell/webkit_test_runner_host.h @@ -9,6 +9,7 @@ #include <string> #include "base/cancelable_callback.h" +#include "base/file_path.h" #include "base/threading/non_thread_safe.h" #include "content/public/browser/render_view_host_observer.h" #include "content/public/browser/web_contents_observer.h" @@ -71,6 +72,7 @@ class WebKitTestController : public base::NonThreadSafe, // True if the controller is ready for testing. bool PrepareForLayoutTest(const GURL& test_url, + const FilePath& current_working_directory, bool enable_pixel_dumping, const std::string& expected_pixel_hash); // True if the controller was reset successfully. @@ -127,6 +129,8 @@ class WebKitTestController : public base::NonThreadSafe, scoped_ptr<WebKitTestResultPrinter> printer_; + FilePath current_working_directory_; + Shell* main_window_; bool enable_pixel_dumping_; |