diff options
author | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-13 18:54:45 +0000 |
---|---|---|
committer | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-13 18:54:45 +0000 |
commit | 5c33656e90592c4f67d2e8468772c1710ebfc25d (patch) | |
tree | 72c3077f6f5ca34593f5020b1981b5e3da10411b /chrome/test/ui/ui_test.h | |
parent | d8cafdf39a84559f2ce223d1710bf91950415215 (diff) | |
download | chromium_src-5c33656e90592c4f67d2e8468772c1710ebfc25d.zip chromium_src-5c33656e90592c4f67d2e8468772c1710ebfc25d.tar.gz chromium_src-5c33656e90592c4f67d2e8468772c1710ebfc25d.tar.bz2 |
Revert "Have UI tests use a profile where the dates in the segment_usage"
A check is failing during page cycler tests so the test is going red.
This reverts commit r28844.
TBR=chase
Review URL: http://codereview.chromium.org/264049
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28859 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/ui/ui_test.h')
-rw-r--r-- | chrome/test/ui/ui_test.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/chrome/test/ui/ui_test.h b/chrome/test/ui/ui_test.h index 165d9e5..177e5d8 100644 --- a/chrome/test/ui/ui_test.h +++ b/chrome/test/ui/ui_test.h @@ -19,6 +19,9 @@ #include "build/build_config.h" +#if defined(OS_WIN) +#include <windows.h> +#endif #include <string> #include "base/command_line.h" @@ -284,6 +287,7 @@ class UITest : public testing::Test { bool need_equal, bool delete_generated_file); + public: // Get/Set a flag to run the renderer in process when running the // tests. static bool in_process_renderer() { return in_process_renderer_; } @@ -527,11 +531,6 @@ class UITest : public testing::Test { bool wait, base::ProcessHandle* process); - // We want to have a current history database when we start the browser so - // things like the NTP will have thumbnails. This method updates the dates - // in the history to be more recent. - void UpdateHistoryDates(); - base::Time test_start_time_; // Time the test was started // (so we can check for new crash dumps) static bool no_sandbox_; |