blob: b137e866c8e5114d1f0cdcc86248d7ca91379ef5 (
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
|
// 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_TAB_CONTENTS_INSECURE_CONTENT_INFOBAR_DELEGATE_H_
#define CHROME_BROWSER_TAB_CONTENTS_INSECURE_CONTENT_INFOBAR_DELEGATE_H_
#pragma once
#include "chrome/browser/tab_contents/confirm_infobar_delegate.h"
// Base class for delegates that show warnings on HTTPS pages which try to
// display or run insecure content.
class InsecureContentInfoBarDelegate : public ConfirmInfoBarDelegate {
public:
enum InfoBarType {
DISPLAY, // Shown when "inactive" content (e.g. images) has been blocked.
RUN, // Shown when "active" content (e.g. script) has been blocked.
};
InsecureContentInfoBarDelegate(InfoBarTabHelper* infobar_helper,
InfoBarType type);
virtual ~InsecureContentInfoBarDelegate();
InfoBarType type() const { return type_; }
private:
enum HistogramEvents {
DISPLAY_INFOBAR_SHOWN = 0, // Infobar was displayed.
DISPLAY_USER_OVERRIDE, // User clicked allow anyway button.
DISPLAY_USER_DID_NOT_LOAD, // User clicked the don't load button.
DISPLAY_INFOBAR_DISMISSED, // User clicked close button.
RUN_INFOBAR_SHOWN,
RUN_USER_OVERRIDE,
RUN_USER_DID_NOT_LOAD,
RUN_INFOBAR_DISMISSED,
NUM_EVENTS
};
// ConfirmInfoBarDelegate:
virtual void InfoBarDismissed() OVERRIDE;
virtual InsecureContentInfoBarDelegate*
AsInsecureContentInfoBarDelegate() OVERRIDE;
virtual string16 GetMessageText() const OVERRIDE;
virtual string16 GetButtonLabel(InfoBarButton button) const OVERRIDE;
virtual bool Accept() OVERRIDE;
virtual bool Cancel() OVERRIDE;
virtual string16 GetLinkText() const OVERRIDE;
virtual bool LinkClicked(WindowOpenDisposition disposition) OVERRIDE;
InfoBarType type_;
DISALLOW_IMPLICIT_CONSTRUCTORS(InsecureContentInfoBarDelegate);
};
#endif // CHROME_BROWSER_TAB_CONTENTS_INSECURE_CONTENT_INFOBAR_DELEGATE_H_
|