diff options
Diffstat (limited to 'chrome/browser/ssl/ssl_error_info.h')
-rw-r--r-- | chrome/browser/ssl/ssl_error_info.h | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/chrome/browser/ssl/ssl_error_info.h b/chrome/browser/ssl/ssl_error_info.h index 225ccf6..ca87a0b 100644 --- a/chrome/browser/ssl/ssl_error_info.h +++ b/chrome/browser/ssl/ssl_error_info.h @@ -9,6 +9,7 @@ #include <string> #include <vector> +#include "base/string16.h" #include "net/base/x509_certificate.h" class GURL; @@ -51,32 +52,32 @@ class SSLErrorInfo { std::vector<SSLErrorInfo>* errors); // A title describing the error, usually to be used with the details below. - const std::wstring& title() const { return title_; } + const string16& title() const { return title_; } // A description of the error. - const std::wstring& details() const { return details_; } + const string16& details() const { return details_; } // A short message describing the error (1 line). - const std::wstring& short_description() const { return short_description_; } + const string16& short_description() const { return short_description_; } // A lengthy explanation of what the error is. Each entry in the returned // vector is a paragraph. - const std::vector<std::wstring>& extra_information() const { + const std::vector<string16>& extra_information() const { return extra_information_; } private: - SSLErrorInfo(const std::wstring& title, - const std::wstring& details, - const std::wstring& short_description, - const std::vector<std::wstring>& extra_info); - - std::wstring title_; - std::wstring details_; - std::wstring short_description_; + SSLErrorInfo(const string16& title, + const string16& details, + const string16& short_description, + const std::vector<string16>& extra_info); + + string16 title_; + string16 details_; + string16 short_description_; // Extra-informations contains paragraphs of text explaining in details what // the error is and what the risks are. - std::vector<std::wstring> extra_information_; + std::vector<string16> extra_information_; }; #endif // CHROME_BROWSER_SSL_SSL_ERROR_INFO_H_ |