OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <string> | 5 #include <string> |
6 | 6 |
7 #include "base/memory/ref_counted.h" | 7 #include "base/memory/ref_counted.h" |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/prefs/pref_notifier.h" |
| 10 #include "base/prefs/testing_pref_store.h" |
9 #include "base/values.h" | 11 #include "base/values.h" |
10 #include "chrome/browser/prefs/pref_model_associator.h" | 12 #include "chrome/browser/prefs/pref_model_associator.h" |
11 #include "chrome/browser/prefs/pref_notifier.h" | |
12 #include "chrome/browser/prefs/pref_value_store.h" | 13 #include "chrome/browser/prefs/pref_value_store.h" |
13 #include "chrome/browser/prefs/testing_pref_store.h" | |
14 #include "chrome/common/pref_names.h" | 14 #include "chrome/common/pref_names.h" |
15 #include "testing/gmock/include/gmock/gmock.h" | 15 #include "testing/gmock/include/gmock/gmock.h" |
16 #include "testing/gtest/include/gtest/gtest.h" | 16 #include "testing/gtest/include/gtest/gtest.h" |
17 | 17 |
18 using testing::Mock; | 18 using testing::Mock; |
19 using testing::_; | 19 using testing::_; |
20 | 20 |
21 namespace { | 21 namespace { |
22 | 22 |
23 // Allows to capture pref notifications through gmock. | 23 // Allows to capture pref notifications through gmock. |
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 prefs::kCommandLinePref)); | 582 prefs::kCommandLinePref)); |
583 EXPECT_TRUE(pref_value_store_->PrefValueExtensionModifiable( | 583 EXPECT_TRUE(pref_value_store_->PrefValueExtensionModifiable( |
584 prefs::kUserPref)); | 584 prefs::kUserPref)); |
585 EXPECT_TRUE(pref_value_store_->PrefValueExtensionModifiable( | 585 EXPECT_TRUE(pref_value_store_->PrefValueExtensionModifiable( |
586 prefs::kRecommendedPref)); | 586 prefs::kRecommendedPref)); |
587 EXPECT_TRUE(pref_value_store_->PrefValueExtensionModifiable( | 587 EXPECT_TRUE(pref_value_store_->PrefValueExtensionModifiable( |
588 prefs::kDefaultPref)); | 588 prefs::kDefaultPref)); |
589 EXPECT_TRUE(pref_value_store_->PrefValueExtensionModifiable( | 589 EXPECT_TRUE(pref_value_store_->PrefValueExtensionModifiable( |
590 prefs::kMissingPref)); | 590 prefs::kMissingPref)); |
591 } | 591 } |
OLD | NEW |