diff options
author | nsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-23 21:33:27 +0000 |
---|---|---|
committer | nsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-23 21:33:27 +0000 |
commit | 9f0ba44a96db7918e11ffa905878c16f044baa65 (patch) | |
tree | ae52654029b84b4714cc3bb1b7e7e9cc3efe1e7e | |
parent | 7bebf970c86a494bef11bd7a97c2be9917beb0c0 (diff) | |
download | chromium_src-9f0ba44a96db7918e11ffa905878c16f044baa65.zip chromium_src-9f0ba44a96db7918e11ffa905878c16f044baa65.tar.gz chromium_src-9f0ba44a96db7918e11ffa905878c16f044baa65.tar.bz2 |
Add stdio to this file becasue we use FILE.
It starts failing with FILE, identifier not found, when
you remove the include for logging.h, which is included
in scoped_handle_win.h
Review URL: http://codereview.chromium.org/16461
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7441 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | base/scoped_handle.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/base/scoped_handle.h b/base/scoped_handle.h index 23f34e3..e53b2dd 100644 --- a/base/scoped_handle.h +++ b/base/scoped_handle.h @@ -5,6 +5,8 @@ #ifndef BASE_SCOPED_HANDLE_H_ #define BASE_SCOPED_HANDLE_H_ +#include <stdio.h> + #include "base/basictypes.h" #if defined(OS_WIN) |