28 lines
672 B
C++
28 lines
672 B
C++
// Copyright (c) 2015 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef ATOM_BROWSER_ATOM_SSL_CONFIG_SERVICE_H_
|
|
#define ATOM_BROWSER_ATOM_SSL_CONFIG_SERVICE_H_
|
|
|
|
#include "net/ssl/ssl_config_service.h"
|
|
|
|
namespace atom {
|
|
|
|
class AtomSSLConfigService : public net::SSLConfigService {
|
|
public:
|
|
AtomSSLConfigService();
|
|
~AtomSSLConfigService() override;
|
|
|
|
// net::SSLConfigService:
|
|
void GetSSLConfig(net::SSLConfig* config) override;
|
|
|
|
private:
|
|
net::SSLConfig config_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(AtomSSLConfigService);
|
|
};
|
|
|
|
} // namespace atom
|
|
|
|
#endif // ATOM_BROWSER_ATOM_SSL_CONFIG_SERVICE_H_
|