blob: 6f0dedaff25ebfc4c963e49dbc60a764caa8ac71 (
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
60
61
62
63
|
// Copyright (c) 2011 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_SSL_BLOCKING_PAGE_H_
#define CHROME_BROWSER_SSL_SSL_BLOCKING_PAGE_H_
#pragma once
#include <string>
#include <vector>
#include "base/callback_old.h"
#include "base/string16.h"
#include "chrome/browser/tab_contents/chrome_interstitial_page.h"
class SSLCertErrorHandler;
namespace base {
class DictionaryValue;
}
// This class is responsible for showing/hiding the interstitial page that is
// shown when a certificate error happens.
// It deletes itself when the interstitial page is closed.
class SSLBlockingPage : public ChromeInterstitialPage {
public:
SSLBlockingPage(SSLCertErrorHandler* handler,
bool overridable,
Callback2<SSLCertErrorHandler*, bool>::Type* callback);
virtual ~SSLBlockingPage();
// A method that sets strings in the specified dictionary from the passed
// vector so that they can be used to resource the ssl_roadblock.html/
// ssl_error.html files.
// Note: there can be up to 5 strings in |extra_info|.
static void SetExtraInfo(base::DictionaryValue* strings,
const std::vector<string16>& extra_info);
protected:
// ChromeInterstitialPage implementation.
virtual std::string GetHTMLContents();
virtual void CommandReceived(const std::string& command);
virtual void UpdateEntry(NavigationEntry* entry);
virtual void Proceed();
virtual void DontProceed();
private:
void NotifyDenyCertificate();
void NotifyAllowCertificate();
// The error we represent. We will either call CancelRequest() or
// ContinueRequest() on this object.
scoped_refptr<SSLCertErrorHandler> handler_;
Callback2<SSLCertErrorHandler*, bool>::Type* callback_;
// Is the certificate error overridable or fatal?
bool overridable_;
DISALLOW_COPY_AND_ASSIGN(SSLBlockingPage);
};
#endif // CHROME_BROWSER_SSL_SSL_BLOCKING_PAGE_H_
|