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 #pragma once | |
8 | 7 |
9 #include <map> | 8 #include <map> |
10 #include <string> | 9 #include <string> |
11 | 10 |
12 #include "base/synchronization/lock.h" | 11 #include "base/synchronization/lock.h" |
13 #include "googleurl/src/gurl.h" | 12 #include "googleurl/src/gurl.h" |
14 #include "webkit/quota/special_storage_policy.h" | 13 #include "webkit/quota/special_storage_policy.h" |
15 | 14 |
16 class CookieSettings; | 15 class CookieSettings; |
17 | 16 |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 void NotifyChanged(); | 67 void NotifyChanged(); |
69 | 68 |
70 base::Lock lock_; // Synchronize all access to the collections. | 69 base::Lock lock_; // Synchronize all access to the collections. |
71 SpecialCollection protected_apps_; | 70 SpecialCollection protected_apps_; |
72 SpecialCollection unlimited_extensions_; | 71 SpecialCollection unlimited_extensions_; |
73 SpecialCollection file_handler_extensions_; | 72 SpecialCollection file_handler_extensions_; |
74 scoped_refptr<CookieSettings> cookie_settings_; | 73 scoped_refptr<CookieSettings> cookie_settings_; |
75 }; | 74 }; |
76 | 75 |
77 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SPECIAL_STORAGE_POLICY_H_ | 76 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SPECIAL_STORAGE_POLICY_H_ |
OLD | NEW |