OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SSLHostState
(Results
1 - 15
of
15
) sorted by null
/external/chromium_org/content/browser/ssl/
ssl_host_state.cc
15
SSLHostState
*
SSLHostState
::GetFor(BrowserContext* context) {
16
SSLHostState
* rv = static_cast<
SSLHostState
*>(context->GetUserData(kKeyName));
18
rv = new
SSLHostState
();
24
SSLHostState
::
SSLHostState
() {
27
SSLHostState
::~
SSLHostState
() {
30
void
SSLHostState
::HostRanInsecureContent(const std::string& host, int pid)
[
all
...]
ssl_host_state.h
23
//
SSLHostState
25
// The
SSLHostState
encapulates the host-specific state for SSL errors. For
26
// example,
SSLHostState
remembers whether the user has whitelisted a
31
class CONTENT_EXPORT
SSLHostState
35
static
SSLHostState
* GetFor(BrowserContext* browser_context);
37
SSLHostState
();
38
virtual ~
SSLHostState
();
79
DISALLOW_COPY_AND_ASSIGN(
SSLHostState
);
ssl_policy_backend.h
18
class
SSLHostState
;
49
SSLHostState
* ssl_host_state_;
ssl_policy_backend.cc
14
: ssl_host_state_(
SSLHostState
::GetFor(controller->GetBrowserContext())),
ssl_host_state_unittest.cc
97
SSLHostState
state;
121
SSLHostState
state;
/external/chromium/chrome/browser/ssl/
ssl_host_state.cc
9
SSLHostState
::
SSLHostState
() {
12
SSLHostState
::~
SSLHostState
() {
15
void
SSLHostState
::HostRanInsecureContent(const std::string& host, int pid) {
20
bool
SSLHostState
::DidHostRunInsecureContent(const std::string& host,
26
void
SSLHostState
::DenyCertForHost(net::X509Certificate* cert,
33
void
SSLHostState
::AllowCertForHost(net::X509Certificate* cert,
40
net::CertPolicy::Judgment
SSLHostState
::QueryPolicy(
ssl_host_state.h
18
//
SSLHostState
20
// The
SSLHostState
encapulates the host-specific state for SSL errors. For
21
// example,
SSLHostState
remembers whether the user has whitelisted a
26
class
SSLHostState
: public base::NonThreadSafe {
28
SSLHostState
();
29
~
SSLHostState
();
60
DISALLOW_COPY_AND_ASSIGN(
SSLHostState
);
ssl_policy_backend.h
17
class
SSLHostState
;
41
SSLHostState
* ssl_host_state_;
ssl_host_state_unittest.cc
95
SSLHostState
state;
119
SSLHostState
state;
/external/chromium/android/autofill/
profile_android.h
104
class
SSLHostState
;
149
virtual
SSLHostState
* GetSSLHostState() { NOTREACHED(); return NULL; }
/external/chromium/chrome/browser/profiles/
profile.h
101
class
SSLHostState
;
261
// Retrieves a pointer to the
SSLHostState
associated with this profile.
262
// The
SSLHostState
is lazily created the first time that this method is
264
virtual
SSLHostState
* GetSSLHostState() = 0;
profile_impl.h
60
virtual
SSLHostState
* GetSSLHostState();
212
scoped_ptr<
SSLHostState
> ssl_host_state_;
profile.cc
302
virtual
SSLHostState
* GetSSLHostState() {
304
ssl_host_state_.reset(new
SSLHostState
());
707
// We don't want
SSLHostState
from the OTR profile to leak back to the main
710
scoped_ptr<
SSLHostState
> ssl_host_state_;
profile_impl.cc
775
SSLHostState
* ProfileImpl::GetSSLHostState() {
777
ssl_host_state_.reset(new
SSLHostState
());
[
all
...]
/external/chromium_org/content/browser/android/
content_view_core_impl.cc
[
all
...]
Completed in 737 milliseconds