2016-04-11 09:36:33 +00:00
|
|
|
// Copyright (c) 2016 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_SECURITY_STATE_MODEL_CLIENT_H_
|
|
|
|
#define ATOM_BROWSER_ATOM_SECURITY_STATE_MODEL_CLIENT_H_
|
|
|
|
|
|
|
|
#include "components/security_state/security_state_model.h"
|
|
|
|
#include "components/security_state/security_state_model_client.h"
|
|
|
|
#include "content/public/browser/web_contents_user_data.h"
|
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
class AtomSecurityStateModelClient
|
|
|
|
: public security_state::SecurityStateModelClient,
|
|
|
|
public content::WebContentsUserData<AtomSecurityStateModelClient> {
|
|
|
|
public:
|
|
|
|
~AtomSecurityStateModelClient() override;
|
|
|
|
|
|
|
|
const security_state::SecurityStateModel::SecurityInfo&
|
|
|
|
GetSecurityInfo() const;
|
|
|
|
|
|
|
|
// security_state::SecurityStateModelClient:
|
|
|
|
void GetVisibleSecurityState(
|
|
|
|
security_state::SecurityStateModel::VisibleSecurityState* state) override;
|
|
|
|
bool RetrieveCert(scoped_refptr<net::X509Certificate>* cert) override;
|
|
|
|
bool UsedPolicyInstalledCertificate() override;
|
|
|
|
bool IsOriginSecure(const GURL& url) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
explicit AtomSecurityStateModelClient(content::WebContents* web_contents);
|
|
|
|
friend class content::WebContentsUserData<AtomSecurityStateModelClient>;
|
|
|
|
|
|
|
|
content::WebContents* web_contents_;
|
2016-05-23 01:59:39 +00:00
|
|
|
std::unique_ptr<security_state::SecurityStateModel> security_state_model_;
|
2016-04-11 09:36:33 +00:00
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(AtomSecurityStateModelClient);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
#endif // ATOM_BROWSER_ATOM_SECURITY_STATE_MODEL_CLIENT_H_
|