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) 2006-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.
#include "chrome/browser/page_info_window.h"
#include "chrome/common/pref_names.h"
#include "chrome/common/pref_service.h"
PageInfoWindow::PageInfoWindow() : cert_id_(0) {
}
PageInfoWindow::~PageInfoWindow() {
}
#if defined(OS_LINUX)
// TODO(rsesek): Remove once we have a PageInfoWindowLinux implementation
PageInfoWindow* PageInfoWindow::Factory() {
NOTIMPLEMENTED();
return NULL;
}
#endif
// static
void PageInfoWindow::CreatePageInfo(Profile* profile,
NavigationEntry* nav_entry,
gfx::NativeView parent,
PageInfoWindow::TabID tab) {
PageInfoWindow* window = Factory();
window->Init(profile, nav_entry->url(), nav_entry->ssl(),
nav_entry->page_type(), true, parent);
window->Show();
}
// static
void PageInfoWindow::CreateFrameInfo(Profile* profile,
const GURL& url,
const NavigationEntry::SSLStatus& ssl,
gfx::NativeView parent,
TabID tab) {
PageInfoWindow* window = Factory();
window->Init(profile, url, ssl, NavigationEntry::NORMAL_PAGE,
false, parent);
window->Show();
}
// static
void PageInfoWindow::RegisterPrefs(PrefService* prefs) {
prefs->RegisterDictionaryPref(prefs::kPageInfoWindowPlacement);
}
// static
std::string PageInfoWindow::GetIssuerName(
const net::X509Certificate::Principal& issuer) {
if (!issuer.common_name.empty())
return issuer.common_name;
if (!issuer.organization_names.empty())
return issuer.organization_names[0];
if (!issuer.organization_unit_names.empty())
return issuer.organization_unit_names[0];
return std::string();
}
|