summaryrefslogtreecommitdiffstats
path: root/base/string_split.h
diff options
context:
space:
mode:
authortimsteele@google.com <timsteele@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-21 19:29:25 +0000
committertimsteele@google.com <timsteele@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-21 19:29:25 +0000
commit0477554f0623c67b163f6fb5cf1ce2c0d53ee4aa (patch)
tree1e6ece023782452db351251e7d3df5926f6eea3b /base/string_split.h
parent811cb260aea2b6edea92e3b900945b55570c75d4 (diff)
downloadchromium_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_split.h')
-rw-r--r--base/string_split.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/base/string_split.h b/base/string_split.h
new file mode 100644
index 0000000..3e7881f
--- /dev/null
+++ b/base/string_split.h
@@ -0,0 +1,27 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef BASE_STRING_SPLIT_H_
+#define BASE_STRING_SPLIT_H_
+
+#include <string>
+#include <utility>
+#include <vector>
+
+namespace base {
+
+bool SplitStringIntoKeyValues(
+ const std::string& line,
+ char key_value_delimiter,
+ std::string* key, std::vector<std::string>* values);
+
+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);
+
+} // namespace base
+
+#endif // BASE_STRING_SPLIT_H