OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebsiteSettings
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/chrome/browser/ui/website_settings/
website_settings_ui.h
20
class
WebsiteSettings
;
81
WebsiteSettings
::SiteIdentityStatus identity_status;
90
WebsiteSettings
::SiteConnectionStatus connection_status;
126
static int GetIdentityIconID(
WebsiteSettings
::SiteIdentityStatus status);
130
WebsiteSettings
::SiteIdentityStatus status);
134
WebsiteSettings
::SiteConnectionStatus status);
138
WebsiteSettings
::SiteConnectionStatus status);
website_settings_ui.cc
84
: identity_status(
WebsiteSettings
::SITE_IDENTITY_STATUS_UNKNOWN),
86
connection_status(
WebsiteSettings
::SITE_CONNECTION_STATUS_UNKNOWN) {
90
if (identity_status ==
WebsiteSettings
::SITE_IDENTITY_STATUS_CERT ||
91
identity_status ==
WebsiteSettings
::SITE_IDENTITY_STATUS_EV_CERT) {
95
WebsiteSettings
::SITE_IDENTITY_STATUS_ADMIN_PROVIDED_CERT) {
250
WebsiteSettings
::SiteIdentityStatus status) {
253
case
WebsiteSettings
::SITE_IDENTITY_STATUS_UNKNOWN:
255
case
WebsiteSettings
::SITE_IDENTITY_STATUS_CERT:
256
case
WebsiteSettings
::SITE_IDENTITY_STATUS_EV_CERT:
259
case
WebsiteSettings
::SITE_IDENTITY_STATUS_CERT_REVOCATION_UNKNOWN
[
all
...]
website_settings.h
29
// The |
WebsiteSettings
| provides information about a website's permissions,
31
// information and allows users to change the permissions. |
WebsiteSettings
|
34
class
WebsiteSettings
: public TabSpecificContentSettings::SiteDataObserver {
69
// Creates a
WebsiteSettings
for the passed |url| using the given |ssl| status
71
// |
WebsiteSettings
| takes ownership of the |ui|.
72
WebsiteSettings
(WebsiteSettingsUI* ui,
79
virtual ~
WebsiteSettings
();
120
// Initializes the |
WebsiteSettings
|.
198
DISALLOW_COPY_AND_ASSIGN(
WebsiteSettings
);
website_settings_unittest.cc
111
<< "No
WebsiteSettings
instance created.";
117
// During creation |
WebsiteSettings
| makes the following calls to the ui.
136
WebsiteSettings
* website_settings() {
138
website_settings_.reset(new
WebsiteSettings
(
148
scoped_ptr<
WebsiteSettings
> website_settings_;
244
EXPECT_EQ(
WebsiteSettings
::SITE_CONNECTION_STATUS_UNENCRYPTED,
246
EXPECT_EQ(
WebsiteSettings
::SITE_IDENTITY_STATUS_NO_CERT,
265
EXPECT_EQ(
WebsiteSettings
::SITE_CONNECTION_STATUS_ENCRYPTED,
267
EXPECT_EQ(
WebsiteSettings
::SITE_IDENTITY_STATUS_CERT,
286
EXPECT_EQ(
WebsiteSettings
::SITE_CONNECTION_STATUS_MIXED_CONTENT
[
all
...]
website_settings.cc
72
WebsiteSettings
::
WebsiteSettings
(
99
base::Bind(&
WebsiteSettings
::OnGotVisitCountToHost,
108
// Every time the Website Settings UI is opened a |
WebsiteSettings
| object is
113
WebsiteSettings
::~
WebsiteSettings
() {
116
void
WebsiteSettings
::OnSitePermissionChanged(ContentSettingsType type,
120
UMA_HISTOGRAM_COUNTS("
WebsiteSettings
.PermissionChanged", type);
217
void
WebsiteSettings
::OnGotVisitCountToHost(HistoryService::Handle handle,
231
void
WebsiteSettings
::OnSiteDataAccessed()
[
all
...]
/external/chromium_org/chrome/browser/ui/android/
website_settings_popup_android.h
47
scoped_ptr<
WebsiteSettings
> presenter_;
website_settings_popup_android.cc
90
presenter_.reset(new
WebsiteSettings
(
/external/chromium_org/chrome/browser/ui/gtk/website_settings/
website_settings_popup_gtk.h
26
class
WebsiteSettings
;
158
scoped_ptr<
WebsiteSettings
> presenter_;
website_settings_popup_gtk.cc
249
presenter_.reset(new
WebsiteSettings
(
495
case
WebsiteSettings
::SITE_IDENTITY_STATUS_CERT:
496
case
WebsiteSettings
::SITE_IDENTITY_STATUS_EV_CERT:
501
case
WebsiteSettings
::SITE_IDENTITY_STATUS_ADMIN_PROVIDED_CERT:
/external/chromium_org/chrome/browser/ui/cocoa/
website_settings_bubble_controller.h
75
scoped_ptr<
WebsiteSettings
> presenter_;
/external/chromium_org/chrome/browser/ui/views/website_settings/
website_settings_popup_view.h
126
scoped_ptr<
WebsiteSettings
> presenter_;
website_settings_popup_view.cc
340
presenter_.reset(new
WebsiteSettings
(
508
case
WebsiteSettings
::SITE_IDENTITY_STATUS_CERT:
509
case
WebsiteSettings
::SITE_IDENTITY_STATUS_EV_CERT:
514
case
WebsiteSettings
::SITE_IDENTITY_STATUS_ADMIN_PROVIDED_CERT:
Completed in 175 milliseconds