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

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

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.cc
diff --git a/content/browser/ssl/ssl_blocking_proceed_decision_store.cc b/content/browser/ssl/ssl_blocking_proceed_decision_store.cc
new file mode 100644
index 0000000000000000000000000000000000000000..fab600f53a5c02c09f4563776d00ed7f54d381fe
--- /dev/null
+++ b/content/browser/ssl/ssl_blocking_proceed_decision_store.cc
@@ -0,0 +1,12 @@
+// 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.
+
+#include "content/browser/ssl/ssl_blocking_proceed_decision_store.h"
+
+bool SSLBlockingProceedDecisionStore::ShouldProceed() {
+ return true;
+}
+
+void SSLBlockingProceedDecisionStore::UserDidProceed() {
felt 2014/07/07 22:26:39 what's going on here?
jww 2014/07/08 17:35:42 Yikes. That slipped in from an earlier implementat
+}

Powered by Google App Engine
This is Rietveld 408576698