Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2370)

Unified Diff: base/stringprintf.h

Issue 7461141: Rename BASE_API to BASE_EXPORT. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/string_util.h ('k') | base/sync_socket.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/stringprintf.h
===================================================================
--- base/stringprintf.h (revision 95578)
+++ base/stringprintf.h (working copy)
@@ -9,42 +9,43 @@
#include <string>
-#include "base/base_api.h"
+#include "base/base_export.h"
#include "base/compiler_specific.h"
namespace base {
// Return a C++ string given printf-like input.
-BASE_API std::string StringPrintf(const char* format, ...) PRINTF_FORMAT(1, 2);
-BASE_API std::wstring StringPrintf(const wchar_t* format, ...)
+BASE_EXPORT std::string StringPrintf(const char* format, ...)
+ PRINTF_FORMAT(1, 2);
+BASE_EXPORT std::wstring StringPrintf(const wchar_t* format, ...)
WPRINTF_FORMAT(1, 2);
// Return a C++ string given vprintf-like input.
-BASE_API std::string StringPrintV(const char* format, va_list ap)
+BASE_EXPORT std::string StringPrintV(const char* format, va_list ap)
PRINTF_FORMAT(1, 0);
// Store result into a supplied string and return it.
-BASE_API const std::string& SStringPrintf(std::string* dst,
- const char* format, ...)
+BASE_EXPORT const std::string& SStringPrintf(std::string* dst,
+ const char* format, ...)
PRINTF_FORMAT(2, 3);
-BASE_API const std::wstring& SStringPrintf(std::wstring* dst,
- const wchar_t* format, ...)
+BASE_EXPORT const std::wstring& SStringPrintf(std::wstring* dst,
+ const wchar_t* format, ...)
WPRINTF_FORMAT(2, 3);
// Append result to a supplied string.
-BASE_API void StringAppendF(std::string* dst, const char* format, ...)
+BASE_EXPORT void StringAppendF(std::string* dst, const char* format, ...)
PRINTF_FORMAT(2, 3);
// TODO(evanm): this is only used in a few places in the code;
// replace with string16 version.
-BASE_API void StringAppendF(std::wstring* dst, const wchar_t* format, ...)
+BASE_EXPORT void StringAppendF(std::wstring* dst, const wchar_t* format, ...)
WPRINTF_FORMAT(2, 3);
// Lower-level routine that takes a va_list and appends to a specified
// string. All other routines are just convenience wrappers around it.
-BASE_API void StringAppendV(std::string* dst, const char* format, va_list ap)
+BASE_EXPORT void StringAppendV(std::string* dst, const char* format, va_list ap)
PRINTF_FORMAT(2, 0);
-BASE_API void StringAppendV(std::wstring* dst,
- const wchar_t* format, va_list ap)
+BASE_EXPORT void StringAppendV(std::wstring* dst,
+ const wchar_t* format, va_list ap)
WPRINTF_FORMAT(2, 0);
} // namespace base
« no previous file with comments | « base/string_util.h ('k') | base/sync_socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698