Bring the browser window to the front when clicking on deprecated accelerator notific...
[chromium-blink-merge.git] / remoting / host / switches.h
blob34ae8a45e9bf0bd7010ebacf0f22d168a82a5d9c
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_
8 namespace remoting {
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
19 // possible values.
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_