diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-03 15:01:29 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-03 15:01:29 +0000 |
commit | f539333976d799cf69562263b7a5b52d6cb0fc36 (patch) | |
tree | c96e836d839a4db08c5ad46b4f4f89b9e7850c87 /base/file_version_info.h | |
parent | 7152c349d7b4704d951e97af42d33cab1753ea7e (diff) | |
download | chromium_src-f539333976d799cf69562263b7a5b52d6cb0fc36.zip chromium_src-f539333976d799cf69562263b7a5b52d6cb0fc36.tar.gz chromium_src-f539333976d799cf69562263b7a5b52d6cb0fc36.tar.bz2 |
Reduce header dependencies in base/
Also adds more explicit #includes for needed things.
Review URL: http://codereview.chromium.org/118162
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17479 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/file_version_info.h')
-rw-r--r-- | base/file_version_info.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/base/file_version_info.h b/base/file_version_info.h index f38d23f..7e86639 100644 --- a/base/file_version_info.h +++ b/base/file_version_info.h @@ -8,7 +8,6 @@ #include <string> #include "base/basictypes.h" -#include "base/file_path.h" #include "base/scoped_ptr.h" #if defined(OS_WIN) @@ -22,6 +21,8 @@ class NSBundle; #endif #endif +class FilePath; + // Provides a way to access the version information for a file. // This is the information you access when you select a file in the Windows // explorer, right-click select Properties, then click the Version tab. |