blob: da7b2b6b5d8759454e22376d5a6e660d83841463 (
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
|
// Copyright (c) 2009 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_COCOA_PAGE_INFO_WINDOW_MAC_H_
#define CHROME_BROWSER_COCOA_PAGE_INFO_WINDOW_MAC_H_
#include "chrome/browser/page_info_model.h"
#include "chrome/browser/page_info_window.h"
class Profile;
@class PageInfoWindowController;
class PageInfoWindowMac : public PageInfoModel::PageInfoModelObserver {
public:
virtual ~PageInfoWindowMac();
// Creates and shows the page info.
static void ShowPageInfo(Profile* profile,
const GURL& url,
const NavigationEntry::SSLStatus& ssl,
bool show_history);
// Shows various information for the specified certificate in a new dialog.
// The argument is ignored here and we use the |cert_id_| member that was
// passed to us in Init().
virtual void ShowCertDialog(int);
// PageInfoModelObserver implementation.
virtual void ModelChanged();
private:
PageInfoWindowMac(PageInfoWindowController* controller,
Profile* profile,
const GURL& url,
const NavigationEntry::SSLStatus& ssl,
bool show_history);
void LayoutSections();
void Show();
PageInfoWindowController* controller_; // WEAK, owns us.
PageInfoModel model_;
// The certificate ID for the page, 0 if the page is not over HTTPS.
int cert_id_;
DISALLOW_COPY_AND_ASSIGN(PageInfoWindowMac);
};
#endif // CHROME_BROWSER_COCOA_PAGE_INFO_WINDOW_MAC_H_
|