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

Unified Diff: chrome/browser/interstitials/security_interstitial_page.h

Issue 935663004: Add checkbox for reporting invalid TLS/SSL cert chains (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: felt's comments Created 5 years, 10 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
Index: chrome/browser/interstitials/security_interstitial_page.h
diff --git a/chrome/browser/interstitials/security_interstitial_page.h b/chrome/browser/interstitials/security_interstitial_page.h
index 98e8e197eeb6f766f42631fe9c890f1764e0ca36..015d1a30de2b3fdb153b737efe02de4297d75309 100644
--- a/chrome/browser/interstitials/security_interstitial_page.h
+++ b/chrome/browser/interstitials/security_interstitial_page.h
@@ -63,4 +63,33 @@ class SecurityInterstitialPage : public content::InterstitialPageDelegate {
DISALLOW_COPY_AND_ASSIGN(SecurityInterstitialPage);
};
+class SecurityInterstitialPageWithExtendedReporting
felt 2015/02/19 00:32:32 I'm debating the pros and cons of having this as a
estark 2015/02/19 02:32:08 Hmm, TBH the latter option didn't really occur to
felt 2015/02/20 19:20:34 Pro - it cleanly separates out the reporting logic
estark 2015/02/23 20:42:18 Okay, I find that Con fairly convincing -- done.
+ : public SecurityInterstitialPage {
+ public:
+ SecurityInterstitialPageWithExtendedReporting(
+ content::WebContents* web_contents,
+ const GURL& url);
+
+ protected:
+ // Record the user's preference for reporting information about
+ // malware and SSL errors.
+ void SetReportingPreference(bool report);
+
+ // Fills the passed dictionary with the values to be passed to the template
+ // when creating the HTML.
+ virtual void PopulateExtendedReportingOption(
+ base::DictionaryValue* load_time_data) = 0;
+
+ // Returns the boolean value of the given |pref| from the PrefService of the
+ // Profile associated with |web_contents_|.
+ bool IsPrefEnabled(const char* pref);
+};
+
+namespace interstitials {
+// Constants used to communicate with the JavaScript.
+extern const char kBoxChecked[];
+extern const char kDisplayCheckBox[];
+extern const char kPrivacyLinkHtml[];
+}
+
#endif // CHROME_BROWSER_INTERSTITIALS_SECURITY_INTERSTITIAL_PAGE_H_

Powered by Google App Engine
This is Rietveld 408576698