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

Unified Diff: chrome/test/chrome_process_util_mac.cc

Issue 3750001: base: Move SplitString functions into the base namespace and update the callers. (Closed) Base URL: git://git.chromium.org/chromium.git
Patch Set: brett review, reverted changes in o3d due to it's using an old base revision Created 10 years, 2 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 | « chrome/test/automated_ui_tests/automated_ui_tests.cc ('k') | chrome/test/selenium/selenium_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chrome_process_util_mac.cc
diff --git a/chrome/test/chrome_process_util_mac.cc b/chrome/test/chrome_process_util_mac.cc
index c4f12fd1f612a3c3249a7262c2917f7bf6d1958e..12332507bde095cbd69b59ab4c94e9353242b4e6 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;
« no previous file with comments | « chrome/test/automated_ui_tests/automated_ui_tests.cc ('k') | chrome/test/selenium/selenium_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698