| Index: base/file_version_info.h
|
| ===================================================================
|
| --- base/file_version_info.h (revision 95578)
|
| +++ base/file_version_info.h (working copy)
|
| @@ -16,7 +16,7 @@
|
|
|
| #include <string>
|
|
|
| -#include "base/base_api.h"
|
| +#include "base/base_export.h"
|
| #include "base/string16.h"
|
|
|
| class FilePath;
|
| @@ -38,14 +38,14 @@
|
| // 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 @@
|
| #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.
|
|
|