Chromium Code Reviews| Index: components/password_manager/core/browser/http_data_cleaner.h |
| diff --git a/components/password_manager/core/browser/http_data_cleaner.h b/components/password_manager/core/browser/http_data_cleaner.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..853dc97500d01c911042c2026876ba3aa27b4929 |
| --- /dev/null |
| +++ b/components/password_manager/core/browser/http_data_cleaner.h |
| @@ -0,0 +1,29 @@ |
| +// Copyright 2017 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 COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_HTTP_DATA_CLEANER_H_ |
| +#define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_HTTP_DATA_CLEANER_H_ |
| + |
| +#include "base/memory/ref_counted.h" |
| +#include "net/url_request/url_request_context_getter.h" |
| + |
| +class PrefService; |
| + |
| +namespace password_manager { |
| + |
| +class PasswordStore; |
| + |
| +void DelayCleanObsoleteHttpDataForPasswordStoreAndPrefs( |
| + PasswordStore* store, |
| + PrefService* prefs, |
| + const scoped_refptr<net::URLRequestContextGetter>& request_context); |
| + |
| +void CleanObsoleteHttpDataForPasswordStoreAndPrefs( |
|
vasilii
2017/03/28 17:27:45
ForTesting?
jdoerrie
2017/03/29 11:27:56
Done.
|
| + PasswordStore* store, |
| + PrefService* prefs, |
| + const scoped_refptr<net::URLRequestContextGetter>& request_context); |
| + |
| +} // namespace password_manager |
| + |
| +#endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_HTTP_DATA_CLEANER_H_ |