diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-12 22:50:39 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-12 22:50:39 +0000 |
commit | 0189bbd4cc569eaec4c6664109659c32fed8e4b7 (patch) | |
tree | f792f823d15a1e806d1b25d0f6d318622db6daf4 /chrome/browser/process_singleton.h | |
parent | 079487b08bf7867eb7c078b59dec61f142a42df2 (diff) | |
download | chromium_src-0189bbd4cc569eaec4c6664109659c32fed8e4b7.zip chromium_src-0189bbd4cc569eaec4c6664109659c32fed8e4b7.tar.gz chromium_src-0189bbd4cc569eaec4c6664109659c32fed8e4b7.tar.bz2 |
CommandLine: rejigger how initialization works.
I'm attempting to clean up CommandLine.
This change rearranges how initialization is done. I am trying
to eliminate redundant functions; more will come in subsequent changes.
Review URL: http://codereview.chromium.org/273018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28752 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/process_singleton.h')
-rw-r--r-- | chrome/browser/process_singleton.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/browser/process_singleton.h b/chrome/browser/process_singleton.h index c7fc904..76c9c22 100644 --- a/chrome/browser/process_singleton.h +++ b/chrome/browser/process_singleton.h @@ -18,6 +18,8 @@ #include "base/non_thread_safe.h" #include "base/ref_counted.h" +class CommandLine; + // ProcessSingleton ---------------------------------------------------------- // // This class allows different browser processes to communicate with @@ -53,7 +55,8 @@ class ProcessSingleton : public NonThreadSafe { #if defined(OS_LINUX) // Exposed for testing. We use a timeout on Linux, and in tests we want // this timeout to be short. - NotifyResult NotifyOtherProcessWithTimeout(int timeout_seconds); + NotifyResult NotifyOtherProcessWithTimeout(const CommandLine& command_line, + int timeout_seconds); #endif // Sets ourself up as the singleton instance. |