Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(137)

Unified Diff: chrome/browser/ssl/ssl_policy_backend.cc

Issue 7111013: Move most of the core SSL code from chrome to content. The UI code that's specific to Chrome (i.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ssl/ssl_policy_backend.h ('k') | chrome/browser/ssl/ssl_request_info.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ssl/ssl_policy_backend.cc
===================================================================
--- chrome/browser/ssl/ssl_policy_backend.cc (revision 87796)
+++ chrome/browser/ssl/ssl_policy_backend.cc (working copy)
@@ -1,39 +0,0 @@
-// Copyright (c) 2010 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/ssl/ssl_policy_backend.h"
-
-#include "chrome/browser/profiles/profile.h"
-#include "chrome/browser/ssl/ssl_host_state.h"
-#include "content/browser/tab_contents/navigation_controller.h"
-
-SSLPolicyBackend::SSLPolicyBackend(NavigationController* controller)
- : ssl_host_state_(controller->profile()->GetSSLHostState()) {
- DCHECK(controller);
-}
-
-void SSLPolicyBackend::HostRanInsecureContent(const std::string& host, int id) {
- ssl_host_state_->HostRanInsecureContent(host, id);
- SSLManager::NotifySSLInternalStateChanged();
-}
-
-bool SSLPolicyBackend::DidHostRunInsecureContent(const std::string& host,
- int pid) const {
- return ssl_host_state_->DidHostRunInsecureContent(host, pid);
-}
-
-void SSLPolicyBackend::DenyCertForHost(net::X509Certificate* cert,
- const std::string& host) {
- ssl_host_state_->DenyCertForHost(cert, host);
-}
-
-void SSLPolicyBackend::AllowCertForHost(net::X509Certificate* cert,
- const std::string& host) {
- ssl_host_state_->AllowCertForHost(cert, host);
-}
-
-net::CertPolicy::Judgment SSLPolicyBackend::QueryPolicy(
- net::X509Certificate* cert, const std::string& host) {
- return ssl_host_state_->QueryPolicy(cert, host);
-}
« no previous file with comments | « chrome/browser/ssl/ssl_policy_backend.h ('k') | chrome/browser/ssl/ssl_request_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698