Chromium Code Reviews| 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 { |