diff options
author | deanm@google.com <deanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-28 14:49:35 +0000 |
---|---|---|
committer | deanm@google.com <deanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-28 14:49:35 +0000 |
commit | 46072d4992a146537bc4979caa8c2457de229b7a (patch) | |
tree | 25132302812acfcbd54d77fcb7f01e2faa7f3be4 /chrome/browser/ssl_error_info.h | |
parent | 571fe6169fed59816435c48f607b78a314d920a9 (diff) | |
download | chromium_src-46072d4992a146537bc4979caa8c2457de229b7a.zip chromium_src-46072d4992a146537bc4979caa8c2457de229b7a.tar.gz chromium_src-46072d4992a146537bc4979caa8c2457de229b7a.tar.bz2 |
Try to cut down on some unnecessary dependencies. Remove any unused includes of gurl.h in header files, and forward declare GURL where possible.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ssl_error_info.h')
-rw-r--r-- | chrome/browser/ssl_error_info.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/ssl_error_info.h b/chrome/browser/ssl_error_info.h index caa2b25..5739a7b 100644 --- a/chrome/browser/ssl_error_info.h +++ b/chrome/browser/ssl_error_info.h @@ -34,9 +34,10 @@ #include <vector> #include "base/logging.h" -#include "googleurl/src/gurl.h" #include "net/base/x509_certificate.h" +class GURL; + // This class describes an error that happened while showing a page over SSL. // An SSLErrorInfo object only exists on the UI thread and only contains // information about an error (type of error and text details). @@ -103,4 +104,4 @@ private: std::vector<std::wstring> extra_information_; }; -#endif // CHROME_BROWSER_SSL_ERROR_INFO_H__
\ No newline at end of file +#endif // CHROME_BROWSER_SSL_ERROR_INFO_H__ |