| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/policy/cloud/cloud_policy_invalidator.h" | 5 #include "chrome/browser/policy/cloud/cloud_policy_invalidator.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/hash.h" | 9 #include "base/hash.h" |
| 10 #include "base/location.h" | 10 #include "base/location.h" |
| 11 #include "base/metrics/histogram.h" | 11 #include "base/metrics/histogram.h" |
| 12 #include "base/rand_util.h" | 12 #include "base/rand_util.h" |
| 13 #include "base/sequenced_task_runner.h" | 13 #include "base/sequenced_task_runner.h" |
| 14 #include "base/strings/string_number_conversions.h" | 14 #include "base/strings/string_number_conversions.h" |
| 15 #include "base/time/clock.h" | 15 #include "base/time/clock.h" |
| 16 #include "base/time/time.h" | 16 #include "base/time/time.h" |
| 17 #include "base/values.h" | 17 #include "base/values.h" |
| 18 #include "chrome/browser/invalidation/invalidation_service.h" | 18 #include "components/invalidation/invalidation_service.h" |
| 19 #include "components/policy/core/common/cloud/cloud_policy_client.h" | 19 #include "components/policy/core/common/cloud/cloud_policy_client.h" |
| 20 #include "components/policy/core/common/cloud/cloud_policy_refresh_scheduler.h" | 20 #include "components/policy/core/common/cloud/cloud_policy_refresh_scheduler.h" |
| 21 #include "components/policy/core/common/cloud/enterprise_metrics.h" | 21 #include "components/policy/core/common/cloud/enterprise_metrics.h" |
| 22 #include "components/policy/core/common/policy_switches.h" | 22 #include "components/policy/core/common/policy_switches.h" |
| 23 #include "policy/policy_constants.h" | 23 #include "policy/policy_constants.h" |
| 24 #include "sync/notifier/object_id_invalidation_map.h" | 24 #include "sync/notifier/object_id_invalidation_map.h" |
| 25 | 25 |
| 26 namespace policy { | 26 namespace policy { |
| 27 | 27 |
| 28 const int CloudPolicyInvalidator::kMissingPayloadDelay = 5; | 28 const int CloudPolicyInvalidator::kMissingPayloadDelay = 5; |
| (...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 bool CloudPolicyInvalidator::GetInvalidationsEnabled() { | 408 bool CloudPolicyInvalidator::GetInvalidationsEnabled() { |
| 409 if (!invalidations_enabled_) | 409 if (!invalidations_enabled_) |
| 410 return false; | 410 return false; |
| 411 // If invalidations have been enabled for less than the grace period, then | 411 // If invalidations have been enabled for less than the grace period, then |
| 412 // consider invalidations to be disabled for metrics reporting. | 412 // consider invalidations to be disabled for metrics reporting. |
| 413 base::TimeDelta elapsed = clock_->Now() - invalidations_enabled_time_; | 413 base::TimeDelta elapsed = clock_->Now() - invalidations_enabled_time_; |
| 414 return elapsed.InSeconds() >= kInvalidationGracePeriod; | 414 return elapsed.InSeconds() >= kInvalidationGracePeriod; |
| 415 } | 415 } |
| 416 | 416 |
| 417 } // namespace policy | 417 } // namespace policy |
| OLD | NEW |