| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef EXTENSIONS_BROWSER_EXTENSION_PREFS_H_ | 5 #ifndef EXTENSIONS_BROWSER_EXTENSION_PREFS_H_ |
| 6 #define EXTENSIONS_BROWSER_EXTENSION_PREFS_H_ | 6 #define EXTENSIONS_BROWSER_EXTENSION_PREFS_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 681 ExtensionPrefValueMap* extension_pref_value_map_; | 681 ExtensionPrefValueMap* extension_pref_value_map_; |
| 682 | 682 |
| 683 // Contains all the logic for handling the order for various extension | 683 // Contains all the logic for handling the order for various extension |
| 684 // properties. | 684 // properties. |
| 685 scoped_ptr<AppSorting> app_sorting_; | 685 scoped_ptr<AppSorting> app_sorting_; |
| 686 | 686 |
| 687 scoped_ptr<TimeProvider> time_provider_; | 687 scoped_ptr<TimeProvider> time_provider_; |
| 688 | 688 |
| 689 bool extensions_disabled_; | 689 bool extensions_disabled_; |
| 690 | 690 |
| 691 ObserverList<ExtensionPrefsObserver> observer_list_; | 691 base::ObserverList<ExtensionPrefsObserver> observer_list_; |
| 692 | 692 |
| 693 DISALLOW_COPY_AND_ASSIGN(ExtensionPrefs); | 693 DISALLOW_COPY_AND_ASSIGN(ExtensionPrefs); |
| 694 }; | 694 }; |
| 695 | 695 |
| 696 } // namespace extensions | 696 } // namespace extensions |
| 697 | 697 |
| 698 #endif // EXTENSIONS_BROWSER_EXTENSION_PREFS_H_ | 698 #endif // EXTENSIONS_BROWSER_EXTENSION_PREFS_H_ |
| OLD | NEW |