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

Unified Diff: chrome/browser/ssl/ssl_policy.h

Issue 48060: SSLPolicy Fix: Step 7.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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 | « no previous file | chrome/browser/ssl/ssl_policy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ssl/ssl_policy.h
===================================================================
--- chrome/browser/ssl/ssl_policy.h (revision 11853)
+++ chrome/browser/ssl/ssl_policy.h (working copy)
@@ -2,24 +2,23 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_SSL_POLICY_H__
-#define CHROME_BROWSER_SSL_POLICY_H__
+#ifndef CHROME_BROWSER_SSL_POLICY_H_
+#define CHROME_BROWSER_SSL_POLICY_H_
+#include "base/singleton.h"
#include "chrome/browser/ssl/ssl_blocking_page.h"
#include "chrome/browser/ssl/ssl_manager.h"
-// The basic SSLPolicy. This class contains default implementations of all
-// the SSLPolicy entry points. It is expected that subclasses will override
-// most of these methods to implement policy specific to certain errors or
-// situations.
+// SSLPolicy
+//
+// This class is responsible for making the security decisions that concern the
+// SSL trust indicators. It relies on the SSLManager to actually enact the
+// decisions it reaches.
+//
class SSLPolicy : public SSLManager::Delegate,
public SSLBlockingPage::Delegate {
public:
// Factory method to get the default policy.
- //
- // SSLPolicy is not meant to be instantiated itself. Only subclasses should
- // be instantiated. The default policy has more complex behavior than a
- // direct instance of SSLPolicy.
static SSLPolicy* GetDefaultPolicy();
// SSLManager::Delegate methods.
@@ -28,12 +27,7 @@
virtual void OnMixedContent(
NavigationController* navigation_controller,
const GURL& main_frame_url,
- SSLManager::MixedContentHandler* mixed_content_handler) {
- // So far only the default policy is expected to receive mixed-content
- // calls.
- NOTREACHED();
- }
-
+ SSLManager::MixedContentHandler* mixed_content_handler);
virtual void OnRequestStarted(SSLManager* manager,
const GURL& url,
ResourceType::Type resource_type,
@@ -53,8 +47,9 @@
virtual void OnAllowCertificate(SSLManager::CertError* error);
protected:
- // Allow our subclasses to construct us.
+ // Construct via |GetDefaultPolicy|.
SSLPolicy();
+ friend struct DefaultSingletonTraits<SSLPolicy>;
// Helper method for derived classes handling certificate errors that can be
// overridden by the user.
@@ -68,7 +63,7 @@
SSLManager::CertError* error);
private:
- DISALLOW_EVIL_CONSTRUCTORS(SSLPolicy);
+ DISALLOW_COPY_AND_ASSIGN(SSLPolicy);
};
-#endif // CHROME_BROWSER_SSL_POLICY_H__
+#endif // CHROME_BROWSER_SSL_POLICY_H_
« no previous file with comments | « no previous file | chrome/browser/ssl/ssl_policy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698