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/string_split.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/string_split.h')
-rw-r--r-- | base/string_split.h | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/base/string_split.h b/base/string_split.h index 883b126..eb0c219 100644 --- a/base/string_split.h +++ b/base/string_split.h @@ -10,7 +10,7 @@ #include <utility> #include <vector> -#include "base/base_api.h" +#include "base/base_export.h" #include "base/string16.h" namespace base { @@ -21,48 +21,48 @@ namespace base { // // Every substring is trimmed of any leading or trailing white space. // NOTE: |c| must be in BMP (Basic Multilingual Plane) -BASE_API void SplitString(const string16& str, - char16 c, - std::vector<string16>* r); +BASE_EXPORT void SplitString(const string16& str, + char16 c, + std::vector<string16>* r); // |str| should not be in a multi-byte encoding like Shift-JIS or GBK in which // the trailing byte of a multi-byte character can be in the ASCII range. // UTF-8, and other single/multi-byte ASCII-compatible encodings are OK. // Note: |c| must be in the ASCII range. -BASE_API void SplitString(const std::string& str, - char c, - std::vector<std::string>* r); +BASE_EXPORT void SplitString(const std::string& str, + char c, + std::vector<std::string>* r); -BASE_API bool SplitStringIntoKeyValues( +BASE_EXPORT bool SplitStringIntoKeyValues( const std::string& line, char key_value_delimiter, std::string* key, std::vector<std::string>* values); -BASE_API bool SplitStringIntoKeyValuePairs( +BASE_EXPORT bool SplitStringIntoKeyValuePairs( const std::string& line, char key_value_delimiter, char key_value_pair_delimiter, std::vector<std::pair<std::string, std::string> >* kv_pairs); // The same as SplitString, but use a substring delimiter instead of a char. -BASE_API void SplitStringUsingSubstr(const string16& str, - const string16& s, - std::vector<string16>* r); -BASE_API void SplitStringUsingSubstr(const std::string& str, - const std::string& s, - std::vector<std::string>* r); +BASE_EXPORT void SplitStringUsingSubstr(const string16& str, + const string16& s, + std::vector<string16>* r); +BASE_EXPORT void SplitStringUsingSubstr(const std::string& str, + const std::string& s, + std::vector<std::string>* r); // The same as SplitString, but don't trim white space. // NOTE: |c| must be in BMP (Basic Multilingual Plane) -BASE_API void SplitStringDontTrim(const string16& str, - char16 c, - std::vector<string16>* r); +BASE_EXPORT void SplitStringDontTrim(const string16& str, + char16 c, + std::vector<string16>* r); // |str| should not be in a multi-byte encoding like Shift-JIS or GBK in which // the trailing byte of a multi-byte character can be in the ASCII range. // UTF-8, and other single/multi-byte ASCII-compatible encodings are OK. // Note: |c| must be in the ASCII range. -BASE_API void SplitStringDontTrim(const std::string& str, - char c, - std::vector<std::string>* r); +BASE_EXPORT void SplitStringDontTrim(const std::string& str, + char c, + std::vector<std::string>* r); // WARNING: this uses whitespace as defined by the HTML5 spec. If you need // a function similar to this but want to trim all types of whitespace, then @@ -72,12 +72,12 @@ BASE_API void SplitStringDontTrim(const std::string& str, // Splits the string along whitespace (where whitespace is the five space // characters defined by HTML 5). Each contiguous block of non-whitespace // characters is added to result. -BASE_API void SplitStringAlongWhitespace(const std::wstring& str, - std::vector<std::wstring>* result); -BASE_API void SplitStringAlongWhitespace(const string16& str, - std::vector<string16>* result); -BASE_API void SplitStringAlongWhitespace(const std::string& str, - std::vector<std::string>* result); +BASE_EXPORT void SplitStringAlongWhitespace(const std::wstring& str, + std::vector<std::wstring>* result); +BASE_EXPORT void SplitStringAlongWhitespace(const string16& str, + std::vector<string16>* result); +BASE_EXPORT void SplitStringAlongWhitespace(const std::string& str, + std::vector<std::string>* result); } // namespace base |