OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "base/message_loop.h" | 5 #include "base/message_loop.h" |
6 #include "base/path_service.h" | 6 #include "base/path_service.h" |
7 #include "base/scoped_temp_dir.h" | 7 #include "base/scoped_temp_dir.h" |
8 #include "base/stl_util-inl.h" | 8 #include "base/stl_util-inl.h" |
9 #include "base/string_number_conversions.h" | 9 #include "base/string_number_conversions.h" |
10 #include "base/stringprintf.h" | 10 #include "base/stringprintf.h" |
11 #include "chrome/browser/browser_thread.h" | |
12 #include "chrome/browser/extensions/extension_prefs.h" | 11 #include "chrome/browser/extensions/extension_prefs.h" |
13 #include "chrome/browser/extensions/test_extension_prefs.h" | 12 #include "chrome/browser/extensions/test_extension_prefs.h" |
14 #include "chrome/browser/prefs/pref_change_registrar.h" | 13 #include "chrome/browser/prefs/pref_change_registrar.h" |
15 #include "chrome/browser/prefs/pref_service.h" | 14 #include "chrome/browser/prefs/pref_service.h" |
16 #include "chrome/common/chrome_paths.h" | 15 #include "chrome/common/chrome_paths.h" |
17 #include "chrome/common/extensions/extension_constants.h" | 16 #include "chrome/common/extensions/extension_constants.h" |
18 #include "chrome/common/notification_details.h" | 17 #include "chrome/common/notification_details.h" |
19 #include "chrome/common/notification_observer_mock.h" | 18 #include "chrome/common/notification_observer_mock.h" |
20 #include "chrome/common/notification_source.h" | 19 #include "chrome/common/notification_source.h" |
21 #include "testing/gtest/include/gtest/gtest.h" | 20 #include "testing/gtest/include/gtest/gtest.h" |
(...skipping 864 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
886 EXPECT_CALL(*v1, Die()).Times(1); | 885 EXPECT_CALL(*v1, Die()).Times(1); |
887 InstallExtControlledPref(ext1_, kPref1, v2); | 886 InstallExtControlledPref(ext1_, kPref1, v2); |
888 prefs_.RecreateExtensionPrefs(); | 887 prefs_.RecreateExtensionPrefs(); |
889 } | 888 } |
890 | 889 |
891 virtual void Verify() { | 890 virtual void Verify() { |
892 } | 891 } |
893 }; | 892 }; |
894 TEST_F(ExtensionPrefsSetExtensionControlledPref, | 893 TEST_F(ExtensionPrefsSetExtensionControlledPref, |
895 ExtensionPrefsSetExtensionControlledPref) {} | 894 ExtensionPrefsSetExtensionControlledPref) {} |
OLD | NEW |