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

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

Issue 449743002: Remove unnecessary strings from SSLErrorInfo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removing strings Created 6 years, 4 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/app/google_chrome_strings.grd ('k') | chrome/browser/ssl/ssl_error_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ssl/ssl_error_info.h
diff --git a/chrome/browser/ssl/ssl_error_info.h b/chrome/browser/ssl/ssl_error_info.h
index 44be6ede176ce5d2b00f7c42384e475fd9009a17..bcc169aec773f86ecb414aa42b5297e9ffc9bcde 100644
--- a/chrome/browser/ssl/ssl_error_info.h
+++ b/chrome/browser/ssl/ssl_error_info.h
@@ -57,33 +57,18 @@ class SSLErrorInfo {
const GURL& url,
std::vector<SSLErrorInfo>* errors);
- // A title describing the error, usually to be used with the details below.
- const base::string16& title() const { return title_; }
-
// A description of the error.
const base::string16& details() const { return details_; }
// A short message describing the error (1 line).
const base::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<base::string16>& extra_information() const {
- return extra_information_;
- }
-
private:
- SSLErrorInfo(const base::string16& title,
- const base::string16& details,
- const base::string16& short_description,
- const std::vector<base::string16>& extra_info);
+ SSLErrorInfo(const base::string16& details,
+ const base::string16& short_description);
- base::string16 title_;
base::string16 details_;
base::string16 short_description_;
- // Extra-informations contains paragraphs of text explaining in details what
- // the error is and what the risks are.
- std::vector<base::string16> extra_information_;
};
#endif // CHROME_BROWSER_SSL_SSL_ERROR_INFO_H_
« no previous file with comments | « chrome/app/google_chrome_strings.grd ('k') | chrome/browser/ssl/ssl_error_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698