Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(453)

Unified Diff: chrome/browser/chromeos/platform_keys/platform_keys_service.cc

Issue 1150373002: platformKeys: Add policy and corporate key tagging. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@key_perm
Patch Set: Rebased. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698