Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3603)

Unified Diff: chrome/test/reliability/page_load_test.cc

Issue 6001010: Move platform_thread to base/threading and put in the base namespace. I left ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/reliability/page_load_test.cc
===================================================================
--- chrome/test/reliability/page_load_test.cc (revision 70328)
+++ chrome/test/reliability/page_load_test.cc (working copy)
@@ -46,6 +46,7 @@
#include "base/string_number_conversions.h"
#include "base/string_util.h"
#include "base/test/test_file_util.h"
+#include "base/threading/platform_thread.h"
#include "base/time.h"
#include "chrome/browser/net/url_fixer_upper.h"
#include "chrome/browser/prefs/pref_service.h"
@@ -214,9 +215,9 @@
// This used to be settable but the flag went away.
int sleep_time_ms = 2000;
window->SimulateOSKeyPress(app::VKEY_NEXT, 0);
- PlatformThread::Sleep(sleep_time_ms);
+ base::PlatformThread::Sleep(sleep_time_ms);
window->SimulateOSKeyPress(app::VKEY_NEXT, 0);
- PlatformThread::Sleep(sleep_time_ms);
+ base::PlatformThread::Sleep(sleep_time_ms);
}
}
}
« no previous file with comments | « chrome/test/mini_installer_test/mini_installer_test_util.cc ('k') | chrome/test/tab_switching/tab_switching_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698