| 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 "chrome/browser/extensions/extension_prefs_unittest.h" | 5 #include "chrome/browser/extensions/extension_prefs_unittest.h" |
| 6 | 6 |
| 7 #include "base/files/scoped_temp_dir.h" | 7 #include "base/files/scoped_temp_dir.h" |
| 8 #include "base/path_service.h" | 8 #include "base/path_service.h" |
| 9 #include "base/run_loop.h" | 9 #include "base/run_loop.h" |
| 10 #include "base/stl_util.h" | 10 #include "base/stl_util.h" |
| 11 #include "base/strings/string_number_conversions.h" | 11 #include "base/strings/string_number_conversions.h" |
| 12 #include "base/strings/stringprintf.h" | |
| 13 #include "base/time/time.h" | 12 #include "base/time/time.h" |
| 14 #include "base/values.h" | 13 #include "base/values.h" |
| 15 #include "chrome/common/chrome_paths.h" | 14 #include "chrome/common/chrome_paths.h" |
| 16 #include "components/pref_registry/pref_registry_syncable.h" | 15 #include "components/pref_registry/pref_registry_syncable.h" |
| 17 #include "components/prefs/mock_pref_change_callback.h" | 16 #include "components/prefs/mock_pref_change_callback.h" |
| 18 #include "components/prefs/pref_change_registrar.h" | 17 #include "components/prefs/pref_change_registrar.h" |
| 19 #include "components/prefs/scoped_user_pref_update.h" | 18 #include "components/prefs/scoped_user_pref_update.h" |
| 20 #include "components/sync/model/string_ordinal.h" | 19 #include "components/sync/model/string_ordinal.h" |
| 21 #include "components/sync_preferences/pref_service_syncable.h" | 20 #include "components/sync_preferences/pref_service_syncable.h" |
| 22 #include "content/public/browser/notification_details.h" | 21 #include "content/public/browser/notification_details.h" |
| (...skipping 969 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 992 | 991 |
| 993 private: | 992 private: |
| 994 std::unique_ptr<const PermissionSet> active_perms_; | 993 std::unique_ptr<const PermissionSet> active_perms_; |
| 995 scoped_refptr<Extension> component_extension_; | 994 scoped_refptr<Extension> component_extension_; |
| 996 scoped_refptr<Extension> no_component_extension_; | 995 scoped_refptr<Extension> no_component_extension_; |
| 997 }; | 996 }; |
| 998 TEST_F(ExtensionPrefsComponentExtension, ExtensionPrefsComponentExtension) { | 997 TEST_F(ExtensionPrefsComponentExtension, ExtensionPrefsComponentExtension) { |
| 999 } | 998 } |
| 1000 | 999 |
| 1001 } // namespace extensions | 1000 } // namespace extensions |
| OLD | NEW |