Index: chrome/browser/chromeos/platform_keys/platform_keys_service.cc |
diff --git a/chrome/browser/chromeos/platform_keys/platform_keys_service.cc b/chrome/browser/chromeos/platform_keys/platform_keys_service.cc |
index 386186b82713a536fab7b19c3886539aa4464fda..4b81281ec957f333536c95ed225b7ea3ff0c5a9f 100644 |
--- a/chrome/browser/chromeos/platform_keys/platform_keys_service.cc |
+++ b/chrome/browser/chromeos/platform_keys/platform_keys_service.cc |
@@ -512,10 +512,15 @@ PlatformKeysService::SelectDelegate::~SelectDelegate() { |
PlatformKeysService::PlatformKeysService( |
bool profile_is_managed, |
+ PrefService* profile_prefs, |
+ policy::PolicyService* profile_policies, |
content::BrowserContext* browser_context, |
extensions::StateStore* state_store) |
: browser_context_(browser_context), |
- key_permissions_(profile_is_managed, state_store), |
+ key_permissions_(profile_is_managed, |
+ profile_prefs, |
+ profile_policies, |
+ state_store), |
weak_factory_(this) { |
DCHECK(browser_context); |
DCHECK(state_store); |