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

Unified Diff: chrome/test/webdriver/server.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
« no previous file with comments | « chrome/test/webdriver/commands/find_element_commands.cc ('k') | chrome/utility/utility_main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/server.cc
===================================================================
--- chrome/test/webdriver/server.cc (revision 70328)
+++ chrome/test/webdriver/server.cc (working copy)
@@ -19,6 +19,7 @@
#include "base/logging.h"
#include "base/scoped_ptr.h"
#include "base/string_util.h"
+#include "base/threading/platform_thread.h"
#include "base/utf_string_conversions.h"
#include "chrome/test/webdriver/dispatch.h"
@@ -129,7 +130,7 @@
std::cout << "Starting server on port: " << port << std::endl;
// The default behavior is to run this service forever.
while (true)
- PlatformThread::Sleep(3600);
+ base::PlatformThread::Sleep(3600);
// We should not reach here since the service should never quit.
// TODO(jmikhail): register a listener for SIGTERM and break the
« no previous file with comments | « chrome/test/webdriver/commands/find_element_commands.cc ('k') | chrome/utility/utility_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698