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

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: 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.h
diff --git a/chrome/browser/chromeos/platform_keys/platform_keys_service.h b/chrome/browser/chromeos/platform_keys/platform_keys_service.h
index 6cbae2caa49f60fd1c2d0e6ffa62c3ce6eb817e9..7cd75923ca392d41454e3d032528edc721960bc4 100644
--- a/chrome/browser/chromeos/platform_keys/platform_keys_service.h
+++ b/chrome/browser/chromeos/platform_keys/platform_keys_service.h
@@ -18,16 +18,18 @@
#include "chrome/browser/chromeos/platform_keys/platform_keys.h"
#include "components/keyed_service/core/keyed_service.h"
-namespace content {
-class BrowserContext;
-class WebContents;
-}
+class PrefService;
namespace base {
class ListValue;
class Value;
}
+namespace content {
+class BrowserContext;
+class WebContents;
+}
+
namespace extensions {
class StateStore;
}
@@ -37,6 +39,10 @@ class X509Certificate;
typedef std::vector<scoped_refptr<X509Certificate>> CertificateList;
}
+namespace policy {
+class PolicyService;
+}
+
namespace chromeos {
class PlatformKeysService : public KeyedService {
@@ -77,6 +83,8 @@ class PlatformKeysService : public KeyedService {
// |browser_context| and |state_store| must not be null and outlive this
// object.
explicit PlatformKeysService(bool profile_is_managed,
+ PrefService* profile_prefs,
+ policy::PolicyService* profile_policies,
content::BrowserContext* browser_context,
extensions::StateStore* state_store);

Powered by Google App Engine
This is Rietveld 408576698