Chromium Code Reviews| Index: blimp/client/app/blimp_client_switches.cc |
| diff --git a/blimp/client/app/blimp_client_switches.cc b/blimp/client/app/blimp_client_switches.cc |
| index 445ebe995d64145911bb4e1e1b207969ec203c50..f72e55152108da21ccaa0deb78bfd4ed107b7e71 100644 |
| --- a/blimp/client/app/blimp_client_switches.cc |
| +++ b/blimp/client/app/blimp_client_switches.cc |
| @@ -7,14 +7,10 @@ |
| namespace blimp { |
| namespace switches { |
| -// Specifies the blimplet IP-address to connect to, e.g.: |
| -// --blimplet-host="127.0.0.1". |
| +// Specifies the blimplet IP-address and port to connect to, e.g.: |
| +// --blimplet-host="127.0.0.1:25467". |
|
Kevin M
2016/02/17 22:00:15
Ooh, this conflicts with my SSL CL, which adds eve
David Trainor- moved to gerrit
2016/02/17 23:02:31
Done. Changed it to tcp:, ssl:, or quic: b/c stan
|
| // TODO(nyquist): Add support for DNS-lookup. See http://crbug.com/576857. |
| -const char kBlimpletHost[] = "blimplet-host"; |
| - |
| -// Specifies the blimplet port to connect to, e.g.: |
| -// --blimplet-tcp-port=25467. |
| -const char kBlimpletTCPPort[] = "blimplet-tcp-port"; |
| +const char kBlimpletEndpoint[] = "blimplet-endpoint"; |
| } // namespace switches |
| } // namespace blimp |