| Index: chrome/browser/chromeos/platform_keys/platform_keys_service.h
|
| diff --git a/chrome/browser/chromeos/platform_keys/platform_keys_service.h b/chrome/browser/chromeos/platform_keys/platform_keys_service.h
|
| index accd89eb49b4ea5175a9112b8cc44bf93e556316..c46026a09429afdc9764ef547a4c57ede1ae4be4 100644
|
| --- a/chrome/browser/chromeos/platform_keys/platform_keys_service.h
|
| +++ b/chrome/browser/chromeos/platform_keys/platform_keys_service.h
|
| @@ -18,6 +18,8 @@
|
| #include "chrome/browser/chromeos/platform_keys/platform_keys.h"
|
| #include "components/keyed_service/core/keyed_service.h"
|
|
|
| +class PrefService;
|
| +
|
| namespace content {
|
| class BrowserContext;
|
| class WebContents;
|
| @@ -74,7 +76,10 @@ class PlatformKeysService : public KeyedService {
|
| // Stores registration information in |state_store|, i.e. for each extension
|
| // the list of public keys that are valid to be used for signing. See
|
| // |KeyPermissions| for details.
|
| - explicit PlatformKeysService(content::BrowserContext* browser_context,
|
| + explicit PlatformKeysService(PrefService* profile_prefs,
|
| + bool profile_is_managed,
|
| + policy::PolicyService* profile_policies,
|
| + content::BrowserContext* browser_context,
|
| extensions::StateStore* state_store);
|
|
|
| ~PlatformKeysService() override;
|
|
|