| 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_
|
|
|