remove --client-certificate flag
authordeepak1556 <hop2deep@gmail.com>
Mon, 18 Apr 2016 16:56:37 +0000 (22:26 +0530)
committerdeepak1556 <hop2deep@gmail.com>
Mon, 18 Apr 2016 16:56:37 +0000 (22:26 +0530)
atom/browser/api/atom_api_app.cc
atom/common/options_switches.cc
atom/common/options_switches.h
docs/api/chrome-command-line-switches.md

index 1446d44..d6afbb3 100644 (file)
@@ -179,11 +179,11 @@ int ImportIntoCertStore(
                                    &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);
       }
     }
   }
@@ -491,7 +491,6 @@ void AppendSwitch(const std::string& switch_string, mate::Arguments* args) {
   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);
index ce28cc9..562171d 100644 (file)
@@ -119,9 +119,6 @@ const char kPpapiFlashPath[] = "ppapi-flash-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";
 
index 52d64c0..5746a7b 100644 (file)
@@ -68,7 +68,6 @@ namespace switches {
 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[];
index 65f096e..8e8aa38 100644 (file)
@@ -15,10 +15,6 @@ app.on('ready', function() {
 });
 ```
 
-## --client-certificate=`path`
-
-Sets the `path` of client certificate file.
-
 ## --ignore-connections-limit=`domains`
 
 Ignore the connections limit for `domains` list separated by `,`.