diff options
author | mcgrathr@chromium.org <mcgrathr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-05 22:46:03 +0000 |
---|---|---|
committer | mcgrathr@chromium.org <mcgrathr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-05 22:46:03 +0000 |
commit | 3ed8c7e21217067f7516275d9bc3c1d4fa447d23 (patch) | |
tree | abd7c01e0ba9cc23f75987cb535834be99fcaf14 | |
parent | 4a04bced46a3ccb9911f8976d78545b2b58a50bc (diff) | |
download | chromium_src-3ed8c7e21217067f7516275d9bc3c1d4fa447d23.zip chromium_src-3ed8c7e21217067f7516275d9bc3c1d4fa447d23.tar.gz chromium_src-3ed8c7e21217067f7516275d9bc3c1d4fa447d23.tar.bz2 |
Remove unnecessary #include <sys/nacl_syscalls.h>
This header has never been needed by this code.
We'd like to be able to remove it in the future.
BUG= http://code.google.com/p/nativeclient/issues/detail?id=2335
TEST= none
R=brettw@chromium.org
Review URL: http://codereview.chromium.org/8162006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@104197 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | base/logging.cc | 1 | ||||
-rw-r--r-- | base/threading/platform_thread_posix.cc | 4 | ||||
-rw-r--r-- | ppapi/native_client/src/shared/ppapi_proxy/plugin_globals.cc | 1 |
3 files changed, 0 insertions, 6 deletions
diff --git a/base/logging.cc b/base/logging.cc index 11ad935..2bf4dff 100644 --- a/base/logging.cc +++ b/base/logging.cc @@ -19,7 +19,6 @@ typedef HANDLE MutexHandle; #include <mach-o/dyld.h> #elif defined(OS_POSIX) #if defined(OS_NACL) -#include <sys/nacl_syscalls.h> #include <sys/time.h> // timespec doesn't seem to be in <time.h> #else #include <sys/syscall.h> diff --git a/base/threading/platform_thread_posix.cc b/base/threading/platform_thread_posix.cc index c924a16..ee9b1b1 100644 --- a/base/threading/platform_thread_posix.cc +++ b/base/threading/platform_thread_posix.cc @@ -30,10 +30,6 @@ #include "base/android/jni_android.h" #endif -#if defined(OS_NACL) -#include <sys/nacl_syscalls.h> -#endif - namespace base { #if defined(OS_MACOSX) diff --git a/ppapi/native_client/src/shared/ppapi_proxy/plugin_globals.cc b/ppapi/native_client/src/shared/ppapi_proxy/plugin_globals.cc index 7281bb9..37f0b8b 100644 --- a/ppapi/native_client/src/shared/ppapi_proxy/plugin_globals.cc +++ b/ppapi/native_client/src/shared/ppapi_proxy/plugin_globals.cc @@ -3,7 +3,6 @@ // found in the LICENSE file. #include <sys/nacl_imc_api.h> -#include <sys/nacl_syscalls.h> #include "native_client/src/shared/platform/nacl_check.h" #include "native_client/src/shared/ppapi_proxy/plugin_globals.h" |