Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(919)

Side by Side Diff: remoting/host/switches.cc

Issue 2936603003: [Chromoting] Implement host safe-mode
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « remoting/host/switches.h ('k') | remoting/host/win/unprivileged_process_delegate.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #include "remoting/host/switches.h" 5 #include "remoting/host/switches.h"
6 6
7 namespace remoting { 7 namespace remoting {
8 8
9 const char kElevateSwitchName[] = "elevate"; 9 const char kElevateSwitchName[] = "elevate";
10 const char kHelpSwitchName[] = "help"; 10 const char kHelpSwitchName[] = "help";
11 const char kProcessTypeSwitchName[] = "type"; 11 const char kProcessTypeSwitchName[] = "type";
12 const char kQuestionSwitchName[] = "?"; 12 const char kQuestionSwitchName[] = "?";
13 const char kVersionSwitchName[] = "version"; 13 const char kVersionSwitchName[] = "version";
14 14
15 const char kProcessTypeController[] = "controller"; 15 const char kProcessTypeController[] = "controller";
16 const char kProcessTypeDaemon[] = "daemon"; 16 const char kProcessTypeDaemon[] = "daemon";
17 const char kProcessTypeDesktop[] = "desktop"; 17 const char kProcessTypeDesktop[] = "desktop";
18 const char kProcessTypeHost[] = "host"; 18 const char kProcessTypeHost[] = "host";
19 const char kProcessTypeRdpDesktopSession[] = "rdp_desktop_session"; 19 const char kProcessTypeRdpDesktopSession[] = "rdp_desktop_session";
20 20
21 const char kParentWindowSwitchName[] = "parent-window"; 21 const char kParentWindowSwitchName[] = "parent-window";
22 22
23 const char kInputSwitchName[] = "input"; 23 const char kInputSwitchName[] = "input";
24 const char kOutputSwitchName[] = "output"; 24 const char kOutputSwitchName[] = "output";
25 25
26 const char kMojoPipeToken[] = "mojo-pipe-token"; 26 const char kMojoPipeToken[] = "mojo-pipe-token";
27 27
28 const char kSafeMode[] = "safe_mode";
29
28 } // namespace remoting 30 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/switches.h ('k') | remoting/host/win/unprivileged_process_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698