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/value_conversions.h b/base/value_conversions.h
index 5ed7550c..c65e6275 100644
--- a/base/value_conversions.h
+++ b/base/value_conversions.h
@@ -8,7 +8,7 @@
// This file contains methods to convert a |FilePath| to a |Value| and back.
-#include "base/base_api.h"
+#include "base/base_export.h"
class FilePath;
@@ -18,8 +18,8 @@
class Value;
// The caller takes ownership of the returned value.
-BASE_API StringValue* CreateFilePathValue(const FilePath& in_value);
-BASE_API bool GetValueAsFilePath(const Value& value, FilePath* file_path);
+BASE_EXPORT StringValue* CreateFilePathValue(const FilePath& in_value);
+BASE_EXPORT bool GetValueAsFilePath(const Value& value, FilePath* file_path);
} // namespace