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

Unified Diff: chrome/test/chrome_process_util_linux.cc

Issue 172039: Replaces some TrimWhitespace with TrimWhitespaceASCII or TrimWhitespaceUTF8. (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: '' Created 11 years, 4 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/browser/net/url_fixer_upper.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_linux.cc
===================================================================
--- chrome/test/chrome_process_util_linux.cc (revision 23601)
+++ chrome/test/chrome_process_util_linux.cc (working copy)
@@ -27,7 +27,7 @@
return -1;
std::string trimmed_output;
- TrimWhitespace(fuser_output, TRIM_ALL, &trimmed_output);
+ TrimWhitespaceASCII(fuser_output, TRIM_ALL, &trimmed_output);
if (trimmed_output.find(' ') != std::string::npos) {
LOG(FATAL) << "Expected exactly 1 process to have socket open: " <<
Property changes on: chrome/test/chrome_process_util_linux.cc
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/browser/net/url_fixer_upper.cc ('k') | chrome/test/selenium/selenium_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698