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

Unified Diff: base/command_line.cc

Issue 3012001: Move implementation from header to source. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: blank line Created 10 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
« no previous file with comments | « base/command_line.h ('k') | base/env_var.h » ('j') | base/task.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/command_line.cc
diff --git a/base/command_line.cc b/base/command_line.cc
index 2c6ef0b801c6d20ed099be9c3dc289c7f4f3ec86..a4500798878696b14414787dc123d0b2f1d52a51 100644
--- a/base/command_line.cc
+++ b/base/command_line.cc
@@ -55,6 +55,9 @@ static void Lowercase(std::string* parameter) {
}
#endif
+CommandLine::~CommandLine() {
+}
+
#if defined(OS_WIN)
CommandLine::CommandLine(ArgumentsOnly args_only) {
}
@@ -437,3 +440,6 @@ void CommandLine::PrependWrapper(const std::wstring& wrapper_wide) {
}
#endif
+
+CommandLine::CommandLine() {
Evan Martin 2010/07/15 17:37:33 Maybe add a comment near this saying "private". I
Elliot Glaysher 2010/07/15 18:08:10 Added comment.
+}
« no previous file with comments | « base/command_line.h ('k') | base/env_var.h » ('j') | base/task.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698