&imported_certs);
if (imported_certs.size() > 1) {
auto it = imported_certs.begin();
- ++it; // skip first which would be the client certificate.
+ ++it; // skip first which would be the client certificate.
for (; it != imported_certs.end(); ++it)
rv &= model->SetCertTrust(it->get(),
- net::CA_CERT,
- net::NSSCertDatabase::TRUSTED_SSL);
+ net::CA_CERT,
+ net::NSSCertDatabase::TRUSTED_SSL);
}
}
}
auto command_line = base::CommandLine::ForCurrentProcess();
if (switch_string == atom::switches::kPpapiFlashPath ||
- switch_string == atom::switches::kClientCertificate ||
switch_string == switches::kLogNetLog) {
base::FilePath path;
args->GetNext(&path);
// Ppapi Flash version.
const char kPpapiFlashVersion[] = "ppapi-flash-version";
-// Path to client certificate.
-const char kClientCertificate[] = "client-certificate";
-
// Disable HTTP cache.
const char kDisableHttpCache[] = "disable-http-cache";
extern const char kEnablePlugins[];
extern const char kPpapiFlashPath[];
extern const char kPpapiFlashVersion[];
-extern const char kClientCertificate[];
extern const char kDisableHttpCache[];
extern const char kRegisterStandardSchemes[];
extern const char kRegisterServiceWorkerSchemes[];
});
```
-## --client-certificate=`path`
-
-Sets the `path` of client certificate file.
-
## --ignore-connections-limit=`domains`
Ignore the connections limit for `domains` list separated by `,`.