| 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/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.h" | 8 #include "base/stl_util.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 "chrome/common/extensions/extension_permission_set.h" | 17 #include "chrome/common/extensions/extension_permission_set.h" |
| 18 #include "chrome/test/testing_browser_process_test.h" | 18 #include "chrome/test/base/testing_browser_process_test.h" |
| 19 #include "content/browser/browser_thread.h" | 19 #include "content/browser/browser_thread.h" |
| 20 #include "content/common/notification_details.h" | 20 #include "content/common/notification_details.h" |
| 21 #include "content/common/notification_observer_mock.h" | 21 #include "content/common/notification_observer_mock.h" |
| 22 #include "content/common/notification_source.h" | 22 #include "content/common/notification_source.h" |
| 23 #include "testing/gtest/include/gtest/gtest.h" | 23 #include "testing/gtest/include/gtest/gtest.h" |
| 24 | 24 |
| 25 using base::Time; | 25 using base::Time; |
| 26 using base::TimeDelta; | 26 using base::TimeDelta; |
| 27 | 27 |
| 28 namespace { | 28 namespace { |
| (...skipping 1036 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1065 testing::Mock::VerifyAndClearExpectations(v1i); | 1065 testing::Mock::VerifyAndClearExpectations(v1i); |
| 1066 testing::Mock::VerifyAndClearExpectations(v2); | 1066 testing::Mock::VerifyAndClearExpectations(v2); |
| 1067 testing::Mock::VerifyAndClearExpectations(v2i); | 1067 testing::Mock::VerifyAndClearExpectations(v2i); |
| 1068 } | 1068 } |
| 1069 | 1069 |
| 1070 virtual void Verify() { | 1070 virtual void Verify() { |
| 1071 } | 1071 } |
| 1072 }; | 1072 }; |
| 1073 TEST_F(ExtensionPrefsSetExtensionControlledPref, | 1073 TEST_F(ExtensionPrefsSetExtensionControlledPref, |
| 1074 ExtensionPrefsSetExtensionControlledPref) {} | 1074 ExtensionPrefsSetExtensionControlledPref) {} |
| OLD | NEW |