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_SPECIAL_STORAGE_POLICY_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_SPECIAL_STORAGE_POLICY_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SPECIAL_STORAGE_POLICY_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SPECIAL_STORAGE_POLICY_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 CachedResults cached_results_; | 72 CachedResults cached_results_; |
73 }; | 73 }; |
74 | 74 |
75 void NotifyChanged(); | 75 void NotifyChanged(); |
76 | 76 |
77 base::Lock lock_; // Synchronize all access to the collections. | 77 base::Lock lock_; // Synchronize all access to the collections. |
78 SpecialCollection protected_apps_; | 78 SpecialCollection protected_apps_; |
79 SpecialCollection installed_apps_; | 79 SpecialCollection installed_apps_; |
80 SpecialCollection unlimited_extensions_; | 80 SpecialCollection unlimited_extensions_; |
81 SpecialCollection file_handler_extensions_; | 81 SpecialCollection file_handler_extensions_; |
82 SpecialCollection web_intent_extensions_; | |
83 scoped_refptr<CookieSettings> cookie_settings_; | 82 scoped_refptr<CookieSettings> cookie_settings_; |
84 }; | 83 }; |
85 | 84 |
86 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SPECIAL_STORAGE_POLICY_H_ | 85 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SPECIAL_STORAGE_POLICY_H_ |
OLD | NEW |