| 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 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_PREFS_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_PREFS_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_PREFS_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_PREFS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/memory/linked_ptr.h" | 13 #include "base/memory/linked_ptr.h" |
| 14 #include "base/time.h" | 14 #include "base/time.h" |
| 15 #include "base/values.h" | 15 #include "base/values.h" |
| 16 #include "chrome/browser/extensions/api/content_settings/content_settings_store.
h" | 16 #include "chrome/browser/extensions/api/content_settings/content_settings_store.
h" |
| 17 #include "chrome/browser/extensions/extension_menu_manager.h" | |
| 18 #include "chrome/browser/extensions/extension_prefs_scope.h" | 17 #include "chrome/browser/extensions/extension_prefs_scope.h" |
| 19 #include "chrome/browser/extensions/extension_scoped_prefs.h" | 18 #include "chrome/browser/extensions/extension_scoped_prefs.h" |
| 20 #include "chrome/browser/extensions/management_policy.h" | 19 #include "chrome/browser/extensions/management_policy.h" |
| 21 #include "chrome/common/extensions/extension.h" | 20 #include "chrome/common/extensions/extension.h" |
| 22 #include "chrome/common/extensions/url_pattern_set.h" | 21 #include "chrome/common/extensions/url_pattern_set.h" |
| 23 #include "chrome/common/string_ordinal.h" | 22 #include "chrome/common/string_ordinal.h" |
| 24 | 23 |
| 25 class ExtensionPrefValueMap; | 24 class ExtensionPrefValueMap; |
| 26 class ExtensionSorting; | 25 class ExtensionSorting; |
| 27 class PrefService; | 26 class PrefService; |
| (...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 // Contains all the logic for handling the order for various extension | 564 // Contains all the logic for handling the order for various extension |
| 566 // properties. | 565 // properties. |
| 567 scoped_ptr<ExtensionSorting> extension_sorting_; | 566 scoped_ptr<ExtensionSorting> extension_sorting_; |
| 568 | 567 |
| 569 scoped_refptr<extensions::ContentSettingsStore> content_settings_store_; | 568 scoped_refptr<extensions::ContentSettingsStore> content_settings_store_; |
| 570 | 569 |
| 571 DISALLOW_COPY_AND_ASSIGN(ExtensionPrefs); | 570 DISALLOW_COPY_AND_ASSIGN(ExtensionPrefs); |
| 572 }; | 571 }; |
| 573 | 572 |
| 574 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PREFS_H_ | 573 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PREFS_H_ |
| OLD | NEW |