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

Side by Side Diff: chrome/browser/chromeos/policy/recommendation_restorer_unittest.cc

Issue 1547093002: Switch to standard integer types in chrome/browser/chromeos/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 unified diff | Download patch
OLDNEW
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 "base/macros.h"
7 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
8 #include "base/prefs/pref_notifier_impl.h" 9 #include "base/prefs/pref_notifier_impl.h"
9 #include "base/prefs/testing_pref_store.h" 10 #include "base/prefs/testing_pref_store.h"
10 #include "base/strings/utf_string_conversions.h" 11 #include "base/strings/utf_string_conversions.h"
11 #include "base/test/test_simple_task_runner.h" 12 #include "base/test/test_simple_task_runner.h"
12 #include "base/thread_task_runner_handle.h" 13 #include "base/thread_task_runner_handle.h"
13 #include "base/time/time.h" 14 #include "base/time/time.h"
14 #include "base/values.h" 15 #include "base/values.h"
15 #include "chrome/browser/chrome_notification_types.h" 16 #include "chrome/browser/chrome_notification_types.h"
16 #include "chrome/browser/chromeos/policy/recommendation_restorer_factory.h" 17 #include "chrome/browser/chromeos/policy/recommendation_restorer_factory.h"
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 552
552 // Fast forward until the reset timer fires. 553 // Fast forward until the reset timer fires.
553 VerifyTimerIsRunning(); 554 VerifyTimerIsRunning();
554 runner_->RunUntilIdle(); 555 runner_->RunUntilIdle();
555 VerifyPrefFollowsRecommendation(prefs::kAccessibilityLargeCursorEnabled, 556 VerifyPrefFollowsRecommendation(prefs::kAccessibilityLargeCursorEnabled,
556 base::FundamentalValue(false)); 557 base::FundamentalValue(false));
557 VerifyTimerIsStopped(); 558 VerifyTimerIsStopped();
558 } 559 }
559 560
560 } // namespace policy 561 } // namespace policy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698