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

Unified Diff: blimp/client/app/blimp_client_switches.h

Issue 1696563002: Blimp: add support for SSL connections. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reland (safe_json issue fixed). Created 4 years, 10 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
« no previous file with comments | « blimp/client/app/android/blimp_jni_registrar.cc ('k') | blimp/client/app/blimp_client_switches.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/client/app/blimp_client_switches.h
diff --git a/blimp/client/app/blimp_client_switches.h b/blimp/client/app/blimp_client_switches.h
index 19b91ddd03d18cc36ec05c2987aa935e8b2f4991..b06958f247f587bdd660a16bca06460ced5c9cb2 100644
--- a/blimp/client/app/blimp_client_switches.h
+++ b/blimp/client/app/blimp_client_switches.h
@@ -10,7 +10,25 @@
namespace blimp {
namespace switches {
-extern const char kBlimpletEndpoint[];
+// The path to the engine's PEM-encoded X509 certificate.
+// If specified, SSL connected Engines must supply this certificate
+// for the connection to be valid.
+// e.g.:
+// --engine-cert-path=/home/blimp/certs/cert.pem
+extern const char kEngineCertPath[];
+
+// Specifies the engine's IP address. Must be used in conjunction with
+// --engine-port and --engine-transport.
+extern const char kEngineIP[];
+
+// Specifies the engine's listening port (1-65535).
+// Must be used in conjunction with --engine-ip and --engine-transport.
+extern const char kEnginePort[];
+
+// Specifies the transport used to communicate with the engine.
+// Can be "tcp" or "ssl".
+// Must be used in conjunction with --engine-ip and --engine-port.
+extern const char kEngineTransport[];
} // namespace switches
} // namespace blimp
« no previous file with comments | « blimp/client/app/android/blimp_jni_registrar.cc ('k') | blimp/client/app/blimp_client_switches.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698