| 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/chromeos/policy/recommendation_restorer.h" | 5 #include "chrome/browser/chromeos/policy/recommendation_restorer.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 #include <utility> | 8 #include <utility> |
| 9 | 9 |
| 10 #include "ash/common/accessibility_types.h" | 10 #include "ash/accessibility_types.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/strings/utf_string_conversions.h" | 12 #include "base/strings/utf_string_conversions.h" |
| 13 #include "base/test/test_simple_task_runner.h" | 13 #include "base/test/test_simple_task_runner.h" |
| 14 #include "base/threading/thread_task_runner_handle.h" | 14 #include "base/threading/thread_task_runner_handle.h" |
| 15 #include "base/time/time.h" | 15 #include "base/time/time.h" |
| 16 #include "base/values.h" | 16 #include "base/values.h" |
| 17 #include "chrome/browser/chrome_notification_types.h" | 17 #include "chrome/browser/chrome_notification_types.h" |
| 18 #include "chrome/browser/chromeos/policy/recommendation_restorer_factory.h" | 18 #include "chrome/browser/chromeos/policy/recommendation_restorer_factory.h" |
| 19 #include "chrome/browser/prefs/browser_prefs.h" | 19 #include "chrome/browser/prefs/browser_prefs.h" |
| 20 #include "chrome/common/chrome_constants.h" | 20 #include "chrome/common/chrome_constants.h" |
| (...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 560 | 560 |
| 561 // Fast forward until the reset timer fires. | 561 // Fast forward until the reset timer fires. |
| 562 VerifyTimerIsRunning(); | 562 VerifyTimerIsRunning(); |
| 563 runner_->RunUntilIdle(); | 563 runner_->RunUntilIdle(); |
| 564 VerifyPrefFollowsRecommendation(prefs::kAccessibilityLargeCursorEnabled, | 564 VerifyPrefFollowsRecommendation(prefs::kAccessibilityLargeCursorEnabled, |
| 565 base::Value(false)); | 565 base::Value(false)); |
| 566 VerifyTimerIsStopped(); | 566 VerifyTimerIsStopped(); |
| 567 } | 567 } |
| 568 | 568 |
| 569 } // namespace policy | 569 } // namespace policy |
| OLD | NEW |