diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-05 15:34:00 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-05 15:34:00 +0000 |
commit | 0bea7254836d17e3f1e278cbd52e8b8816c49a48 (patch) | |
tree | eb16c01ad0143fad583cd60a87828fd90c94f61a /base/file_version_info.h | |
parent | 93f3edc8adc1db9e3d1deebde0ec58d15b7e1a91 (diff) | |
download | chromium_src-0bea7254836d17e3f1e278cbd52e8b8816c49a48.zip chromium_src-0bea7254836d17e3f1e278cbd52e8b8816c49a48.tar.gz chromium_src-0bea7254836d17e3f1e278cbd52e8b8816c49a48.tar.bz2 |
Rename BASE_API to BASE_EXPORT.
R=rvargas
Review URL: http://codereview.chromium.org/7461141
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95618 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/file_version_info.h')
-rw-r--r-- | base/file_version_info.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/base/file_version_info.h b/base/file_version_info.h index ab9ebe1..b41dc63 100644 --- a/base/file_version_info.h +++ b/base/file_version_info.h @@ -16,7 +16,7 @@ extern "C" IMAGE_DOS_HEADER __ImageBase; #include <string> -#include "base/base_api.h" +#include "base/base_export.h" #include "base/string16.h" class FilePath; @@ -38,14 +38,14 @@ class FileVersionInfo { // Creates a FileVersionInfo for the specified path. Returns NULL if something // goes wrong (typically the file does not exit or cannot be opened). The // returned object should be deleted when you are done with it. - BASE_API static FileVersionInfo* CreateFileVersionInfo( + BASE_EXPORT static FileVersionInfo* CreateFileVersionInfo( const FilePath& file_path); #endif // OS_WIN || OS_MACOSX #if defined(OS_WIN) // Creates a FileVersionInfo for the specified module. Returns NULL in case // of error. The returned object should be deleted when you are done with it. - BASE_API static FileVersionInfo* CreateFileVersionInfoForModule( + BASE_EXPORT static FileVersionInfo* CreateFileVersionInfoForModule( HMODULE module); // Creates a FileVersionInfo for the current module. Returns NULL in case @@ -60,7 +60,7 @@ class FileVersionInfo { #else // Creates a FileVersionInfo for the current module. Returns NULL in case // of error. The returned object should be deleted when you are done with it. - BASE_API static FileVersionInfo* CreateFileVersionInfoForCurrentModule(); + BASE_EXPORT static FileVersionInfo* CreateFileVersionInfoForCurrentModule(); #endif // OS_WIN // Accessors to the different version properties. |