blob: 51a3a3a1265b7a098f4c82b3d8d2bc425aa2bd21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_SSL_POLICY_H_
#define CHROME_BROWSER_SSL_POLICY_H_
#include "base/singleton.h"
#include "chrome/browser/ssl/ssl_blocking_page.h"
#include "chrome/browser/ssl/ssl_manager.h"
// SSLPolicy
//
// This class is responsible for making the security decisions that concern the
// SSL trust indicators. It relies on the SSLManager to actually enact the
// decisions it reaches.
//
class SSLPolicy : public SSLManager::Delegate,
public SSLBlockingPage::Delegate {
public:
// Factory method to get the default policy.
static SSLPolicy* GetDefaultPolicy();
// SSLManager::Delegate methods.
virtual void OnCertError(SSLManager::CertError* error);
virtual void OnMixedContent(SSLManager::MixedContentHandler* handler);
virtual void OnRequestStarted(SSLManager::RequestInfo* info);
virtual void UpdateEntry(SSLManager* manager, NavigationEntry* entry);
// This method is static because it is called from both the UI and the IO
// threads.
static bool IsMixedContent(const GURL& url,
ResourceType::Type resource_type,
FilterPolicy::Type filter_policy,
const std::string& frame_origin);
// SSLBlockingPage::Delegate methods.
virtual SSLErrorInfo GetSSLErrorInfo(SSLManager::CertError* error);
virtual void OnDenyCertificate(SSLManager::CertError* error);
virtual void OnAllowCertificate(SSLManager::CertError* error);
private:
// Construct via |GetDefaultPolicy|.
SSLPolicy();
friend struct DefaultSingletonTraits<SSLPolicy>;
// Helper method for derived classes handling certificate errors that can be
// overridden by the user.
// Show a blocking page and let the user continue or cancel the request.
void OnOverridableCertError(SSLManager::CertError* error);
// Helper method for derived classes handling fatal certificate errors.
// Cancel the request and show an error page.
void OnFatalCertError(SSLManager::CertError* error);
DISALLOW_COPY_AND_ASSIGN(SSLPolicy);
};
#endif // CHROME_BROWSER_SSL_POLICY_H_
|