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

Unified Diff: base/command_line.cc

Issue 3817001: CommandLine: remove wstring-based program() accessor (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: 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
Index: base/command_line.cc
diff --git a/base/command_line.cc b/base/command_line.cc
index 477b4e72bb7e2d01b93ece352c8ab189f715717c..f42304710071c2fe55bdef9c221539dacd5627b8 100644
--- a/base/command_line.cc
+++ b/base/command_line.cc
@@ -340,12 +340,6 @@ FilePath CommandLine::GetProgram() const {
#endif
}
-#if defined(OS_WIN)
-std::wstring CommandLine::program() const {
- return program_;
-}
-#endif
-
#if defined(OS_POSIX)
std::string CommandLine::command_line_string() const {
return JoinString(argv_, ' ');

Powered by Google App Engine
This is Rietveld 408576698