Rename CommandLine::GetCommandLineString().
Fix string hackery in net/tools/dump_cache/dump_cache.cc
Fix const casts in chrome/installer/util/product.cc and base/process_util_win.cc.

BUG=73195
TEST=none

Review URL: http://codereview.chromium.org/7386002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93165 0039d316-1c4b-4281-b951-d872f2087c98


CrOS-Libchrome-Original-Commit: 61a4c6f8372350bedd95d8834c8bfd1b36a27c1b
diff --git a/base/command_line.h b/base/command_line.h
index 802fa0f..3b15e93 100644
--- a/base/command_line.h
+++ b/base/command_line.h
@@ -79,8 +79,7 @@
 
   // Constructs and returns the represented command line string.
   // CAUTION! This should be avoided because quoting behavior is unclear.
-  // TODO(msw): Rename GetCommandLineString.
-  StringType command_line_string() const;
+  StringType GetCommandLineString() const;
 
   // Returns the original command line string as a vector of strings.
   const StringVector& argv() const { return argv_; }