| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 // Defines all the command-line switches used by //blimp/client/core. | 5 // Defines all the command-line switches used by //blimp/client/core. |
| 6 | 6 |
| 7 #ifndef BLIMP_CLIENT_CORE_SWITCHES_BLIMP_CLIENT_SWITCHES_H_ | 7 #ifndef BLIMP_CLIENT_CORE_SWITCHES_BLIMP_CLIENT_SWITCHES_H_ |
| 8 #define BLIMP_CLIENT_CORE_SWITCHES_BLIMP_CLIENT_SWITCHES_H_ | 8 #define BLIMP_CLIENT_CORE_SWITCHES_BLIMP_CLIENT_SWITCHES_H_ |
| 9 | 9 |
| 10 namespace blimp { | 10 namespace blimp { |
| 11 namespace switches { | 11 namespace switches { |
| 12 | 12 |
| 13 // Enables blimp mode. |
| 14 extern const char kEnableBlimp[]; |
| 15 |
| 13 // The path to the engine's PEM-encoded X509 certificate. | 16 // The path to the engine's PEM-encoded X509 certificate. |
| 14 // If specified, SSL connected Engines must supply this certificate | 17 // If specified, SSL connected Engines must supply this certificate |
| 15 // for the connection to be valid. | 18 // for the connection to be valid. |
| 16 // e.g.: | 19 // e.g.: |
| 17 // --engine-cert-path=/home/blimp/certs/cert.pem | 20 // --engine-cert-path=/home/blimp/certs/cert.pem |
| 18 extern const char kEngineCertPath[]; | 21 extern const char kEngineCertPath[]; |
| 19 | 22 |
| 20 // Specifies the engine's IP address. Must be used in conjunction with | 23 // Specifies the engine's IP address. Must be used in conjunction with |
| 21 // --engine-port and --engine-transport. | 24 // --engine-port and --engine-transport. |
| 22 extern const char kEngineIP[]; | 25 extern const char kEngineIP[]; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 34 extern const char kDownloadWholeDocument[]; | 37 extern const char kDownloadWholeDocument[]; |
| 35 | 38 |
| 36 // Enables the updated compositing path, which uses a threaded | 39 // Enables the updated compositing path, which uses a threaded |
| 37 // LayerTreeHostInProcess for the BlimpCompositor. | 40 // LayerTreeHostInProcess for the BlimpCompositor. |
| 38 extern const char kEnableUpdatedCompositingPath[]; | 41 extern const char kEnableUpdatedCompositingPath[]; |
| 39 | 42 |
| 40 } // namespace switches | 43 } // namespace switches |
| 41 } // namespace blimp | 44 } // namespace blimp |
| 42 | 45 |
| 43 #endif // BLIMP_CLIENT_CORE_SWITCHES_BLIMP_CLIENT_SWITCHES_H_ | 46 #endif // BLIMP_CLIENT_CORE_SWITCHES_BLIMP_CLIENT_SWITCHES_H_ |
| OLD | NEW |