diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-14 00:35:36 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-14 00:35:36 +0000 |
commit | 76eb0247d08fa6c503517ec1a0cb8e6566cd39c7 (patch) | |
tree | e14c2632fab2f76df22827fe0c7908fd54240699 /chrome/test/chrome_process_util_mac.cc | |
parent | 7f8aff5b10859950cf9a6996a5d3d288ea3c75f4 (diff) | |
download | chromium_src-76eb0247d08fa6c503517ec1a0cb8e6566cd39c7.zip chromium_src-76eb0247d08fa6c503517ec1a0cb8e6566cd39c7.tar.gz chromium_src-76eb0247d08fa6c503517ec1a0cb8e6566cd39c7.tar.bz2 |
base: Move SplitString functions into the base namespace and update the callers.
BUG=None
TEST=trybots
Review URL: http://codereview.chromium.org/3750001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62483 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/chrome_process_util_mac.cc')
-rw-r--r-- | chrome/test/chrome_process_util_mac.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/test/chrome_process_util_mac.cc b/chrome/test/chrome_process_util_mac.cc index c4f12fd..1233250 100644 --- a/chrome/test/chrome_process_util_mac.cc +++ b/chrome/test/chrome_process_util_mac.cc @@ -37,14 +37,14 @@ MacChromeProcessInfoList GetRunningMacProcessInfo( // Process the results std::vector<std::string> ps_output_lines; - SplitString(ps_output, '\n', &ps_output_lines); + base::SplitString(ps_output, '\n', &ps_output_lines); std::vector<std::string>::const_iterator line_iter; for (line_iter = ps_output_lines.begin(); line_iter != ps_output_lines.end(); ++line_iter) { std::string line(CollapseWhitespaceASCII(*line_iter, false)); std::vector<std::string> values; - SplitString(line, ' ', &values); + base::SplitString(line, ' ', &values); if (values.size() == 3) { MacChromeProcessInfo proc_info; int pid; |