Chromium Code Reviews

Unified Diff: base/command_line.h

Issue 6002013: Move the SetProcTitle code out of base and into chrome/common. This is only... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « base/base.gypi ('k') | base/command_line.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/command_line.h
===================================================================
--- base/command_line.h (revision 70263)
+++ base/command_line.h (working copy)
@@ -17,13 +17,12 @@
#define BASE_COMMAND_LINE_H_
#pragma once
-#include "build/build_config.h"
-
#include <map>
#include <string>
#include <vector>
#include "base/basictypes.h"
+#include "build/build_config.h"
class FilePath;
class InProcessBrowserTest;
@@ -66,13 +65,6 @@
// line, but it still must be called to set up the command line.
static void Init(int argc, const char* const* argv);
-#if defined(OS_POSIX) && !defined(OS_MACOSX)
- // Sets the current process' arguments that show in "ps" etc. to those
- // in |current_process_commandline_|. Used by the zygote host so that
- // renderers show up with --type=renderer.
- static void SetProcTitle();
-#endif
-
// Destroys the current process CommandLine singleton. This is necessary if
// you want to reset the base library to its initial state (for example in an
// outer library that needs to be able to terminate, and be re-initialized).
« no previous file with comments | « base/base.gypi ('k') | base/command_line.cc » ('j') | no next file with comments »

Powered by Google App Engine