diff options
author | timsteele@google.com <timsteele@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-21 19:29:25 +0000 |
---|---|---|
committer | timsteele@google.com <timsteele@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-21 19:29:25 +0000 |
commit | 0477554f0623c67b163f6fb5cf1ce2c0d53ee4aa (patch) | |
tree | 1e6ece023782452db351251e7d3df5926f6eea3b /base/string_util.h | |
parent | 811cb260aea2b6edea92e3b900945b55570c75d4 (diff) | |
download | chromium_src-0477554f0623c67b163f6fb5cf1ce2c0d53ee4aa.zip chromium_src-0477554f0623c67b163f6fb5cf1ce2c0d53ee4aa.tar.gz chromium_src-0477554f0623c67b163f6fb5cf1ce2c0d53ee4aa.tar.bz2 |
Move two generic string split functions from sync API to their own API in base/string_split.
BUG=None
TEST=base_unittests
Original patch by Thiago Farina
Original Review: http://codereview.chromium.org/464075
Review URL: http://codereview.chromium.org/502074
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36774 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/string_util.h')
-rw-r--r-- | base/string_util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/base/string_util.h b/base/string_util.h index c895f27..34f9386 100644 --- a/base/string_util.h +++ b/base/string_util.h @@ -530,6 +530,8 @@ template<typename Char> struct CaseInsensitiveCompareASCII { } }; +// TODO(timsteele): Move these split string functions into their own API on +// string_split.cc/.h files. //----------------------------------------------------------------------------- // Splits |str| into a vector of strings delimited by |s|. Append the results |