summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-23 21:33:27 +0000
committernsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-23 21:33:27 +0000
commit9f0ba44a96db7918e11ffa905878c16f044baa65 (patch)
treeae52654029b84b4714cc3bb1b7e7e9cc3efe1e7e
parent7bebf970c86a494bef11bd7a97c2be9917beb0c0 (diff)
downloadchromium_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.h2
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)