| 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 <stdint.h> | 7 #include <stdint.h> |
| 8 | 8 |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/bind.h" | 12 #include "base/bind.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 15 #include "base/message_loop/message_loop.h" |
| 15 #include "base/metrics/histogram_macros.h" | 16 #include "base/metrics/histogram_macros.h" |
| 16 #include "base/metrics/histogram_samples.h" | 17 #include "base/metrics/histogram_samples.h" |
| 17 #include "base/metrics/sample_map.h" | 18 #include "base/metrics/sample_map.h" |
| 18 #include "base/metrics/statistics_recorder.h" | 19 #include "base/metrics/statistics_recorder.h" |
| 19 #include "base/run_loop.h" | 20 #include "base/run_loop.h" |
| 20 #include "base/test/simple_test_clock.h" | 21 #include "base/test/simple_test_clock.h" |
| 21 #include "base/test/test_simple_task_runner.h" | 22 #include "base/test/test_simple_task_runner.h" |
| 22 #include "base/time/time.h" | 23 #include "base/time/time.h" |
| 23 #include "base/values.h" | 24 #include "base/values.h" |
| 24 #include "build/build_config.h" | 25 #include "build/build_config.h" |
| (...skipping 1070 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1095 CloudPolicyInvalidatorUserTypedTest, | 1096 CloudPolicyInvalidatorUserTypedTest, |
| 1096 testing::Values(em::DeviceRegisterRequest::ANDROID_BROWSER)); | 1097 testing::Values(em::DeviceRegisterRequest::ANDROID_BROWSER)); |
| 1097 #else | 1098 #else |
| 1098 INSTANTIATE_TEST_CASE_P( | 1099 INSTANTIATE_TEST_CASE_P( |
| 1099 CloudPolicyInvalidatorUserTypedTestInstance, | 1100 CloudPolicyInvalidatorUserTypedTestInstance, |
| 1100 CloudPolicyInvalidatorUserTypedTest, | 1101 CloudPolicyInvalidatorUserTypedTest, |
| 1101 testing::Values(em::DeviceRegisterRequest::BROWSER)); | 1102 testing::Values(em::DeviceRegisterRequest::BROWSER)); |
| 1102 #endif | 1103 #endif |
| 1103 | 1104 |
| 1104 } // namespace policy | 1105 } // namespace policy |
| OLD | NEW |