| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 ExtensionSet extensions_; | 70 ExtensionSet extensions_; |
| 71 CachedResults cached_results_; | 71 CachedResults cached_results_; |
| 72 }; | 72 }; |
| 73 | 73 |
| 74 void NotifyChanged(); | 74 void NotifyChanged(); |
| 75 | 75 |
| 76 base::Lock lock_; // Synchronize all access to the collections. | 76 base::Lock lock_; // Synchronize all access to the collections. |
| 77 SpecialCollection protected_apps_; | 77 SpecialCollection protected_apps_; |
| 78 SpecialCollection unlimited_extensions_; | 78 SpecialCollection unlimited_extensions_; |
| 79 SpecialCollection file_handler_extensions_; | 79 SpecialCollection file_handler_extensions_; |
| 80 SpecialCollection web_intent_extensions_; |
| 80 scoped_refptr<CookieSettings> cookie_settings_; | 81 scoped_refptr<CookieSettings> cookie_settings_; |
| 81 }; | 82 }; |
| 82 | 83 |
| 83 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SPECIAL_STORAGE_POLICY_H_ | 84 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SPECIAL_STORAGE_POLICY_H_ |
| OLD | NEW |