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

Unified Diff: remoting/host/host_main.cc

Issue 422503004: Adding ability to stream windows and inject events to them (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: uploaded to remove lint errors Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: remoting/host/host_main.cc
diff --git a/remoting/host/host_main.cc b/remoting/host/host_main.cc
index 947e4ccc1de4698032a3ce31cad109ca84baa612..8a5ffb632cf7ba7789b050dec49ec66073249634 100644
--- a/remoting/host/host_main.cc
+++ b/remoting/host/host_main.cc
@@ -69,14 +69,15 @@ const char kUsageMessage[] =
"Usage: %s [options]\n"
"\n"
"Options:\n"
- " --audio-pipe-name=<pipe> - Sets the pipe name to capture audio on Linux.\n"
- " --console - Runs the daemon interactively.\n"
- " --daemon-pipe=<pipe> - Specifies the pipe to connect to the daemon.\n"
- " --elevate=<binary> - Runs <binary> elevated.\n"
- " --host-config=<config> - Specifies the host configuration.\n"
- " --help, -? - Print this message.\n"
- " --type - Specifies process type.\n"
- " --version - Prints the host version and exits.\n";
+ " --audio-pipe-name=<pipe> - Sets the pipe name to capture audio on Linux.\n"
+ " --console - Runs the daemon interactively.\n"
+ " --daemon-pipe=<pipe> - Specifies the pipe to connect to the daemon.\n"
+ " --elevate=<binary> - Runs <binary> elevated.\n"
+ " --host-config=<config> - Specifies the host configuration.\n"
+ " --help, -? - Print this message.\n"
+ " --type - Specifies process type.\n"
+ " --version - Prints the host version and exits.\n"
+ " --window-Id=<id> - Specifies that a window should be streamed.\n";
Lambros 2014/07/30 00:14:48 Please use lower-case: window-id Also, you don't n
ronakvora do not use 2014/07/30 20:55:35 Done.
ronakvora do not use 2014/07/30 20:56:40 Done.
void Usage(const base::FilePath& program_name) {
printf(kUsageMessage, program_name.MaybeAsASCII().c_str());

Powered by Google App Engine
This is Rietveld 408576698