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

Unified Diff: chrome/test/webdriver/session_manager.cc

Issue 6086003: Cleanup: Remove unneeded includes of chrome_switches.h. (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/webdriver/session_manager.cc
===================================================================
--- chrome/test/webdriver/session_manager.cc (revision 69787)
+++ chrome/test/webdriver/session_manager.cc (working copy)
@@ -5,16 +5,16 @@
#include "chrome/test/webdriver/session_manager.h"
#ifdef OS_POSIX
James Hawkins 2010/12/22 21:54:36 Platform-specific includes at the bottom and inclu
Lei Zhang 2011/01/08 01:51:36 Done.
- #include <netdb.h>
- #include <unistd.h>
- #include <arpa/inet.h>
- #include <net/if.h>
- #include <sys/ioctl.h>
- #include <sys/socket.h>
- #include <sys/types.h>
+#include <arpa/inet.h>
+#include <net/if.h>
+#include <netdb.h>
+#include <sys/ioctl.h>
+#include <sys/socket.h>
+#include <sys/types.h>
+#include <unistd.h>
#elif OS_WIN
- #include <Shellapi.h>
- #include <Winsock2.h>
+#include <Shellapi.h>
+#include <Winsock2.h>
#endif
#include "base/command_line.h"
@@ -24,9 +24,7 @@
#include "base/ref_counted.h"
#include "base/scoped_ptr.h"
#include "base/test/test_timeouts.h"
-
#include "chrome/common/chrome_constants.h"
-#include "chrome/common/chrome_switches.h"
namespace webdriver {

Powered by Google App Engine
This is Rietveld 408576698