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

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 9 years, 11 months 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/webdriver_command.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/session_manager.cc
===================================================================
--- chrome/test/webdriver/session_manager.cc (revision 70702)
+++ chrome/test/webdriver/session_manager.cc (working copy)
@@ -4,19 +4,6 @@
#include "chrome/test/webdriver/session_manager.h"
-#ifdef OS_POSIX
- #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>
-#elif OS_WIN
- #include <Shellapi.h>
- #include <Winsock2.h>
-#endif
-
#include "base/command_line.h"
#include "base/logging.h"
#include "base/process.h"
@@ -24,10 +11,21 @@
#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"
+#if defined(OS_POSIX)
+#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 defined(OS_WIN)
+#include <Shellapi.h>
+#include <Winsock2.h>
+#endif
+
namespace webdriver {
std::string SessionManager::GetIPAddress() {
« no previous file with comments | « chrome/test/webdriver/commands/webdriver_command.cc ('k') | chrome/utility/utility_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698