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

Unified Diff: chrome/browser/policy/device_management_policy_provider.h

Issue 5331008: Persist 'this device is not managed' information (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix build on Windows Created 10 years, 1 month 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/policy/device_management_policy_provider.h
diff --git a/chrome/browser/policy/device_management_policy_provider.h b/chrome/browser/policy/device_management_policy_provider.h
index 09b818a8ea8e782a4ca199089c437627deafe366..c7cdcbc1a207bd9de4f8b148e524f65f2a4a7d0a 100644
--- a/chrome/browser/policy/device_management_policy_provider.h
+++ b/chrome/browser/policy/device_management_policy_provider.h
@@ -56,6 +56,10 @@ class DeviceManagementPolicyProvider
// server and no response or error has yet been received.
bool IsPolicyRequestPending() const { return policy_request_pending_; }
+ bool waiting_for_initial_policies() const {
+ return waiting_for_initial_policies_;
+ }
+
// Tells the provider that the passed in token service reference is about to
// become invalid.
void Shutdown();
@@ -66,11 +70,27 @@ class DeviceManagementPolicyProvider
friend class DeviceManagementPolicyProviderTest;
+ // More configurable constructor for use by test cases.
+ DeviceManagementPolicyProvider(const PolicyDefinitionList* policy_list,
+ DeviceManagementBackend* backend,
+ Profile* profile,
+ int64 policy_refresh_rate_ms,
+ int64 policy_refresh_max_earlier_ms,
+ int64 policy_refresh_error_delay_ms,
+ int64 token_fetch_error_delay_ms,
+ int64 unmanaged_device_refresh_rate_ms);
+
// Called by constructors to perform shared initialization. Initialization
// requiring the IOThread must not be performed directly in this method,
// rather must be deferred until the IOThread is fully initialized. This is
// the case in InitializeAfterIOThreadExists.
- void Initialize();
+ void Initialize(DeviceManagementBackend* backend,
+ Profile* profile,
+ int64 policy_refresh_rate_ms,
+ int64 policy_refresh_max_earlier_ms,
+ int64 policy_refresh_error_delay_ms,
+ int64 token_fetch_error_delay_ms,
+ int64 unmanaged_device_refresh_rate_ms);
// Called by a deferred task posted to the UI thread to complete the portion
// of initialization that requires the IOThread.
@@ -90,6 +110,11 @@ class DeviceManagementPolicyProvider
// Calculates when the next RefreshTask shall be executed.
int64 GetRefreshTaskDelay();
+ void StopWaitingForInitialPolicies();
+
+ // Send a CLOUD_POLICY_UPDATE notification.
+ void NotifyCloudPolicyUpdate() const;
+
// The path of the device token file.
FilePath GetTokenPath();
@@ -105,20 +130,6 @@ class DeviceManagementPolicyProvider
static FilePath GetOrCreateDeviceManagementDir(
const FilePath& user_data_dir);
- // Give unit tests the ability to override timeout settings.
- void set_policy_refresh_rate_ms(int64 policy_refresh_rate_ms) {
- policy_refresh_rate_ms_ = policy_refresh_rate_ms;
- }
- void set_policy_refresh_max_earlier_ms(int64 policy_refresh_max_earlier_ms) {
- policy_refresh_max_earlier_ms_ = policy_refresh_max_earlier_ms;
- }
- void set_policy_refresh_error_delay_ms(int64 policy_refresh_error_delay_ms) {
- policy_refresh_error_delay_ms_ = policy_refresh_error_delay_ms;
- }
- void set_token_fetch_error_delay_ms(int64 token_fetch_error_delay_ms) {
- token_fetch_error_delay_ms_ = token_fetch_error_delay_ms;
- }
-
scoped_ptr<DeviceManagementBackend> backend_;
Profile* profile_; // weak
scoped_ptr<DeviceManagementPolicyCache> cache_;
@@ -127,10 +138,12 @@ class DeviceManagementPolicyProvider
FilePath storage_dir_;
bool policy_request_pending_;
bool refresh_task_pending_;
+ bool waiting_for_initial_policies_;
int64 policy_refresh_rate_ms_;
int64 policy_refresh_max_earlier_ms_;
int64 policy_refresh_error_delay_ms_;
int64 token_fetch_error_delay_ms_;
+ int64 unmanaged_device_refresh_rate_ms_;
DISALLOW_COPY_AND_ASSIGN(DeviceManagementPolicyProvider);
};
« no previous file with comments | « chrome/browser/policy/device_management_policy_cache.cc ('k') | chrome/browser/policy/device_management_policy_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698