diff options
Diffstat (limited to 'chrome/test/ui/ui_test.h')
-rw-r--r-- | chrome/test/ui/ui_test.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/chrome/test/ui/ui_test.h b/chrome/test/ui/ui_test.h index 031e3c5..75ecae2 100644 --- a/chrome/test/ui/ui_test.h +++ b/chrome/test/ui/ui_test.h @@ -446,8 +446,13 @@ class UITest : public testing::Test { bool enable_file_cookies_; // Enable file cookies, default is true. private: - base::Time test_start_time_; // Time the test was started +#if defined(OS_WIN) + // TODO(port): make this use base::Time instead. It would seem easy, but + // the code also depends on file_util::CountFilesCreatedAfter which hasn't + // yet been made portable. + FILETIME test_start_time_; // Time the test was started // (so we can check for new crash dumps) +#endif static bool no_sandbox_; static bool safe_plugins_; static bool full_memory_dump_; // If true, write full memory dump |