diff options
author | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-07 01:31:57 +0000 |
---|---|---|
committer | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-07 01:31:57 +0000 |
commit | c5afdbde93d1daf443c1cc8b3ecb5cae51f55f60 (patch) | |
tree | 80298e0bd82a13f8d70020bc7f0edf37a0832b8b /chrome/browser/ssl/ssl_manager.h | |
parent | 8f56bc760b7bb6cfb62a86c2120842128f5c2ade (diff) | |
download | chromium_src-c5afdbde93d1daf443c1cc8b3ecb5cae51f55f60.zip chromium_src-c5afdbde93d1daf443c1cc8b3ecb5cae51f55f60.tar.gz chromium_src-c5afdbde93d1daf443c1cc8b3ecb5cae51f55f60.tar.bz2 |
Reverting 11179.
Reverting CL as plugin UI tests fail on Vista
Review URL: http://codereview.chromium.org/40260
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11187 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ssl/ssl_manager.h')
-rw-r--r-- | chrome/browser/ssl/ssl_manager.h | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/chrome/browser/ssl/ssl_manager.h b/chrome/browser/ssl/ssl_manager.h index 63cfce4..0b1842e 100644 --- a/chrome/browser/ssl/ssl_manager.h +++ b/chrome/browser/ssl/ssl_manager.h @@ -49,8 +49,6 @@ class WebContents; class SSLManager : public NotificationObserver { public: - class CertError; - // An ErrorHandler carries information from the IO thread to the UI thread // and is dispatched to the appropriate SSLManager when it arrives on the // UI thread. Subclasses should override the OnDispatched/OnDispatchFailed @@ -65,8 +63,6 @@ class SSLManager : public NotificationObserver { public: virtual ~ErrorHandler() { } - virtual CertError* AsCertError() { return NULL; } - // Find the appropriate SSLManager for the URLRequest and begin handling // this error. // @@ -171,7 +167,7 @@ class SSLManager : public NotificationObserver { bool request_has_been_notified_; // A flag to make sure we notify the // URLRequest exactly once. - DISALLOW_COPY_AND_ASSIGN(ErrorHandler); + DISALLOW_EVIL_CONSTRUCTORS(ErrorHandler); }; // A CertError represents an error that occurred with the certificate in an @@ -179,9 +175,6 @@ class SSLManager : public NotificationObserver { // thread and allows us to cancel/continue a request it is associated with. class CertError : public ErrorHandler { public: - - virtual CertError* AsCertError() { return this; } - // These accessors are available on either thread const net::SSLInfo& ssl_info() const { return ssl_info_; } int cert_error() const { return cert_error_; } @@ -213,7 +206,7 @@ class SSLManager : public NotificationObserver { // that error. ResourceType::Type resource_type_; - DISALLOW_COPY_AND_ASSIGN(CertError); + DISALLOW_EVIL_CONSTRUCTORS(CertError); }; // The MixedContentHandler class is used to query what to do with @@ -231,7 +224,7 @@ class SSLManager : public NotificationObserver { virtual void OnDispatched() { manager()->OnMixedContent(this); } private: - DISALLOW_COPY_AND_ASSIGN(MixedContentHandler); + DISALLOW_EVIL_CONSTRUCTORS(MixedContentHandler); }; // The SSLManager will ask its delegate to decide how to handle events |