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
diff --git a/base/file_version_info.h b/base/file_version_info.h
index ab9ebe1..b41dc638 100644
--- a/base/file_version_info.h
+++ b/base/file_version_info.h
@@ -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.