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

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

Issue 2152953002: Refactoring Native Messaging Host process launching code into its own file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing CR feedback. Created 4 years, 4 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/setup/me2me_native_messaging_host_main.cc ('k') | remoting/host/switches.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 #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 // The command line switch specifying the daemon IPC endpoint. 10 // The command line switch specifying the daemon IPC endpoint.
(...skipping 14 matching lines...) Expand all
25 // The command line switch used to get version of the daemon. 25 // The command line switch used to get version of the daemon.
26 extern const char kVersionSwitchName[]; 26 extern const char kVersionSwitchName[];
27 27
28 // Values for kProcessTypeSwitchName. 28 // Values for kProcessTypeSwitchName.
29 extern const char kProcessTypeController[]; 29 extern const char kProcessTypeController[];
30 extern const char kProcessTypeDaemon[]; 30 extern const char kProcessTypeDaemon[];
31 extern const char kProcessTypeDesktop[]; 31 extern const char kProcessTypeDesktop[];
32 extern const char kProcessTypeHost[]; 32 extern const char kProcessTypeHost[];
33 extern const char kProcessTypeRdpDesktopSession[]; 33 extern const char kProcessTypeRdpDesktopSession[];
34 34
35 // Used to pass the HWND for the parent process to a child process.
36 extern const char kParentWindowSwitchName[];
37
38 // Name of the pipe used to communicate from the parent to the child process.
39 extern const char kInputSwitchName[];
40
41 // Name of the pipe used to communicate from the child to the parent process.
42 extern const char kOutputSwitchName[];
43
35 } // namespace remoting 44 } // namespace remoting
36 45
37 #endif // REMOTING_HOST_SWITCHES_H_ 46 #endif // REMOTING_HOST_SWITCHES_H_
OLDNEW
« no previous file with comments | « remoting/host/setup/me2me_native_messaging_host_main.cc ('k') | remoting/host/switches.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698