diff options
author | alexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-18 07:15:19 +0000 |
---|---|---|
committer | alexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-18 07:15:19 +0000 |
commit | 09fb5e7eb335d60f03d7ea0f6a965e540a53aefd (patch) | |
tree | 1a734c73c5ff6f271dd5dc7f227a96244030e81d /remoting/host/host_exit_codes.h | |
parent | 54184ce75951a273cbb132ad637b1bfd991808e6 (diff) | |
download | chromium_src-09fb5e7eb335d60f03d7ea0f6a965e540a53aefd.zip chromium_src-09fb5e7eb335d60f03d7ea0f6a965e540a53aefd.tar.gz chromium_src-09fb5e7eb335d60f03d7ea0f6a965e540a53aefd.tar.bz2 |
[Chromoting] The desktop process now connects back to the daemon process.
BUG=134694
Review URL: https://chromiumcodereview.appspot.com/11048056
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@162667 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/host_exit_codes.h')
-rw-r--r-- | remoting/host/host_exit_codes.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/remoting/host/host_exit_codes.h b/remoting/host/host_exit_codes.h index 546dbd6..38852a0 100644 --- a/remoting/host/host_exit_codes.h +++ b/remoting/host/host_exit_codes.h @@ -7,14 +7,17 @@ namespace remoting { -// Known host exit codes. Please keep this enum in sync with: -// remoting/host/installer/mac/PrivilegedHelperTools/org.chromium.chromoting.me2me.sh -// and remoting/tools/me2me_virtual_host.py. +// Known host exit codes. The exit codes indicating permanent errors must be in +// sync with: +// - remoting/host/installer/mac/PrivilegedHelperTools/ +// org.chromium.chromoting.me2me.sh +// - remoting/tools/me2me_virtual_host.py. enum HostExitCodes { // Error codes that don't indicate a permanent error condition. kSuccessExitCode = 0, kReservedForX11ExitCode = 1, - kHostInitializationFailed = 7, + kInitializationFailed = 7, + kUsageExitCode = 8, // Error codes that do indicate a permanent error condition. kInvalidHostConfigurationExitCode = 2, |