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

Unified Diff: base/process_util_unittest.cc

Issue 7386002: Rename CommandLine::GetCommandLineString(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge. Created 9 years, 5 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
Index: base/process_util_unittest.cc
diff --git a/base/process_util_unittest.cc b/base/process_util_unittest.cc
index 826a82be485ab8f8534cab6161bf40b8a6db64c7..0dd3825dc2b9dba6149a369f990543ee70375a59 100644
--- a/base/process_util_unittest.cc
+++ b/base/process_util_unittest.cc
@@ -387,7 +387,7 @@ TEST_F(ProcessUtilTest, LaunchAsUser) {
base::UserTokenHandle token;
ASSERT_TRUE(OpenProcessToken(GetCurrentProcess(), TOKEN_ALL_ACCESS, &token));
std::wstring cmdline =
- this->MakeCmdLine("SimpleChildProcess", false).command_line_string();
+ this->MakeCmdLine("SimpleChildProcess", false).GetCommandLineString();
EXPECT_TRUE(base::LaunchAppAsUser(token, cmdline, false, NULL));
}

Powered by Google App Engine
This is Rietveld 408576698