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..cfcf2a00dc0e939cb77e7048d493251c59de5ca0 100644 |
| --- a/blimp/client/app/blimp_client_switches.cc |
| +++ b/blimp/client/app/blimp_client_switches.cc |
| @@ -7,14 +7,11 @@ |
| namespace blimp { |
| namespace switches { |
| -// Specifies the blimplet IP-address to connect to, e.g.: |
| -// --blimplet-host="127.0.0.1". |
| +// Specifies the blimplet scheme, IP-address and port to connect to, e.g.: |
| +// --blimplet-host="tcp:127.0.0.1:25467". Valid schemes are "ssl", |
| +// "tcp", and "quic". |
|
nyquist
2016/02/18 01:58:40
Should //blimp/docs/running.md be updated?
David Trainor- moved to gerrit
2016/02/18 16:01:54
Done.
|
| // 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 |