OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/memory/scoped_temp_dir.h" | |
6 #include "base/message_loop.h" | 5 #include "base/message_loop.h" |
7 #include "base/path_service.h" | 6 #include "base/path_service.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/extensions/extension_prefs.h" | 11 #include "chrome/browser/extensions/extension_prefs.h" |
12 #include "chrome/browser/extensions/test_extension_prefs.h" | 12 #include "chrome/browser/extensions/test_extension_prefs.h" |
13 #include "chrome/browser/prefs/pref_change_registrar.h" | 13 #include "chrome/browser/prefs/pref_change_registrar.h" |
14 #include "chrome/browser/prefs/scoped_user_pref_update.h" | 14 #include "chrome/browser/prefs/scoped_user_pref_update.h" |
15 #include "chrome/common/chrome_paths.h" | 15 #include "chrome/common/chrome_paths.h" |
16 #include "chrome/common/extensions/extension_constants.h" | 16 #include "chrome/common/extensions/extension_constants.h" |
| 17 #include "content/browser/browser_thread.h" |
17 #include "content/common/notification_details.h" | 18 #include "content/common/notification_details.h" |
18 #include "content/common/notification_observer_mock.h" | 19 #include "content/common/notification_observer_mock.h" |
19 #include "content/common/notification_source.h" | 20 #include "content/common/notification_source.h" |
20 #include "content/browser/browser_thread.h" | |
21 #include "testing/gtest/include/gtest/gtest.h" | 21 #include "testing/gtest/include/gtest/gtest.h" |
22 | 22 |
23 using base::Time; | 23 using base::Time; |
24 using base::TimeDelta; | 24 using base::TimeDelta; |
25 | 25 |
26 namespace { | 26 namespace { |
27 | 27 |
28 const char kPref1[] = "path1.subpath"; | 28 const char kPref1[] = "path1.subpath"; |
29 const char kPref2[] = "path2"; | 29 const char kPref2[] = "path2"; |
30 const char kPref3[] = "path3"; | 30 const char kPref3[] = "path3"; |
(...skipping 923 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
954 testing::Mock::VerifyAndClearExpectations(v1i); | 954 testing::Mock::VerifyAndClearExpectations(v1i); |
955 testing::Mock::VerifyAndClearExpectations(v2); | 955 testing::Mock::VerifyAndClearExpectations(v2); |
956 testing::Mock::VerifyAndClearExpectations(v2i); | 956 testing::Mock::VerifyAndClearExpectations(v2i); |
957 } | 957 } |
958 | 958 |
959 virtual void Verify() { | 959 virtual void Verify() { |
960 } | 960 } |
961 }; | 961 }; |
962 TEST_F(ExtensionPrefsSetExtensionControlledPref, | 962 TEST_F(ExtensionPrefsSetExtensionControlledPref, |
963 ExtensionPrefsSetExtensionControlledPref) {} | 963 ExtensionPrefsSetExtensionControlledPref) {} |
OLD | NEW |