| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef REMOTING_HOST_SWITCHES_H_ | 5 #ifndef REMOTING_HOST_SWITCHES_H_ |
| 6 #define REMOTING_HOST_SWITCHES_H_ | 6 #define REMOTING_HOST_SWITCHES_H_ |
| 7 | 7 |
| 8 namespace remoting { | 8 namespace remoting { |
| 9 | 9 |
| 10 extern const char kElevateSwitchName[]; | 10 extern const char kElevateSwitchName[]; |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 // Name of the pipe used to communicate from the parent to the child process. | 35 // Name of the pipe used to communicate from the parent to the child process. |
| 36 extern const char kInputSwitchName[]; | 36 extern const char kInputSwitchName[]; |
| 37 | 37 |
| 38 // Name of the pipe used to communicate from the child to the parent process. | 38 // Name of the pipe used to communicate from the child to the parent process. |
| 39 extern const char kOutputSwitchName[]; | 39 extern const char kOutputSwitchName[]; |
| 40 | 40 |
| 41 // Token used to create a message pipe between a pair of child and parent | 41 // Token used to create a message pipe between a pair of child and parent |
| 42 // processes. | 42 // processes. |
| 43 extern const char kMojoPipeToken[]; | 43 extern const char kMojoPipeToken[]; |
| 44 | 44 |
| 45 // Forces current process to execute in "safe-mode", i.e. any experimental |
| 46 // features will be disabled. |
| 47 extern const char kSafeMode[]; |
| 48 |
| 45 } // namespace remoting | 49 } // namespace remoting |
| 46 | 50 |
| 47 #endif // REMOTING_HOST_SWITCHES_H_ | 51 #endif // REMOTING_HOST_SWITCHES_H_ |
| OLD | NEW |