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

Unified Diff: content/browser/ssl/ssl_blocking_proceed_decision_store.h

Issue 369703002: Remember user decisions on invalid certificates behind a flag (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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: content/browser/ssl/ssl_blocking_proceed_decision_store.h
diff --git a/content/browser/ssl/ssl_blocking_proceed_decision_store.h b/content/browser/ssl/ssl_blocking_proceed_decision_store.h
new file mode 100644
index 0000000000000000000000000000000000000000..2ec80d5c7c9bdac82751e3113605d16af2a539c7
--- /dev/null
+++ b/content/browser/ssl/ssl_blocking_proceed_decision_store.h
@@ -0,0 +1,18 @@
+// Copyright (c) 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_SSL_SSL_BLOCKING_PROCEED_DECISION_STORE_H_
+#define CHROME_BROWSER_SSL_SSL_BLOCKING_PROCEED_DECISION_STORE_H_
+
+// Creates a new SSL proceed decision store backed by the global chrome prefs.
+class SSLBlockingProceedDecisionStore {
+ public:
+ SSLBlockingProceedDecisionStore() {}
+
+ bool ShouldProceed();
+
+ void UserDidProceed();
+};
+
+#endif // CHROME_BROWSER_SSL_SSL_BLOCKING_PROCEED_DECISION_STORE_H_

Powered by Google App Engine
This is Rietveld 408576698