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

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

Issue 1150373002: platformKeys: Add policy and corporate key tagging. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@key_perm
Patch Set: 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.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;

Powered by Google App Engine
This is Rietveld 408576698