diff options
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/chrome_switches.cc | 9 | ||||
-rw-r--r-- | chrome/common/chrome_switches.h | 3 |
2 files changed, 8 insertions, 4 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index 1645ba1..a4a2ca4 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -640,6 +640,10 @@ const char kProcessPerSite[] = "process-per-site"; // script connections to each other). const char kProcessPerTab[] = "process-per-tab"; +// Output the product version information and quit. Used as an internal api to +// detect the installed version of Chrome on Linux. +const char kProductVersion[] = "product-version"; + // Causes the process to run as a profile import subprocess. const char kProfileImportProcess[] = "profile-import"; @@ -834,9 +838,8 @@ const char kUtilityProcess[] = "utility"; // specifies the directory that can be accessed. const char kUtilityProcessAllowedDir[] = "utility-allowed-dir"; -// Output the product version information and quit. Used as an internal api to -// detect the installed version of Chrome on Linux. -const char kProductVersion[] = "product-version"; +// Print version information and quit. +const char kVersion[] = "version"; // Will add kWaitForDebugger to every child processes. If a value is passed, it // will be used as a filter to determine if the child process should have the diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h index 57e6d15..c0e3d3e 100644 --- a/chrome/common/chrome_switches.h +++ b/chrome/common/chrome_switches.h @@ -186,6 +186,7 @@ extern const char kPluginStartupDialog[]; extern const char kPrint[]; extern const char kProcessPerSite[]; extern const char kProcessPerTab[]; +extern const char kProductVersion[]; extern const char kProfileImportProcess[]; extern const char kProxyAutoDetect[]; extern const char kProxyBypassList[]; @@ -236,7 +237,7 @@ extern const char kUserScriptsDir[]; extern const char kUtilityCmdPrefix[]; extern const char kUtilityProcess[]; extern const char kUtilityProcessAllowedDir[]; -extern const char kProductVersion[]; +extern const char kVersion[]; extern const char kWaitForDebuggerChildren[]; extern const char kWebWorkerProcessPerCore[]; extern const char kWebWorkerShareProcesses[]; |