From e2452b1f6a0fd3f6ce592acc9a7741dac7c6d76a Mon Sep 17 00:00:00 2001 From: bcwhite Date: Mon, 30 Nov 2015 11:09:33 -0800 Subject: Removed unused include of winsock.h/inet.h from sys_byteorder.h. The sys_byteorder methods no longer use htonl() and friends and so the include in not necessary. Several files, however, expect those system methods to be available after including sys_byteorder.h so they have been changed to use the methods defined within sys_byteorder.h instead. TBR=jam BUG= Review URL: https://codereview.chromium.org/1471073010 Cr-Commit-Position: refs/heads/master@{#362179} --- components/nacl/browser/nacl_process_host.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'components') diff --git a/components/nacl/browser/nacl_process_host.cc b/components/nacl/browser/nacl_process_host.cc index 3dfc1d8..6d44c35 100644 --- a/components/nacl/browser/nacl_process_host.cc +++ b/components/nacl/browser/nacl_process_host.cc @@ -60,6 +60,7 @@ #if defined(OS_POSIX) +#include #include #include #include @@ -67,6 +68,7 @@ #include "ipc/ipc_channel_posix.h" #elif defined(OS_WIN) #include +#include #include "base/threading/thread.h" #include "base/win/scoped_handle.h" -- cgit v1.1