1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef REMOTING_HOST_SWITCHES_H_
6 #define REMOTING_HOST_SWITCHES_H_
10 // The command line switch specifying the daemon IPC endpoint.
11 extern const char kDaemonPipeSwitchName
[];
13 extern const char kElevateSwitchName
[];
15 // "--help" prints the usage message.
16 extern const char kHelpSwitchName
[];
18 // Used to specify the type of the process. kProcessType* constants specify
20 extern const char kProcessTypeSwitchName
[];
22 // "--?" prints the usage message.
23 extern const char kQuestionSwitchName
[];
25 // The command line switch used to get version of the daemon.
26 extern const char kVersionSwitchName
[];
28 // Values for kProcessTypeSwitchName.
29 extern const char kProcessTypeController
[];
30 extern const char kProcessTypeDaemon
[];
31 extern const char kProcessTypeDesktop
[];
32 extern const char kProcessTypeHost
[];
33 extern const char kProcessTypeRdpDesktopSession
[];
35 } // namespace remoting
37 #endif // REMOTING_HOST_SWITCHES_H_