Chromium Code Reviews| 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
|
| +} |