Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Side by Side Diff: chrome/browser/extensions/extension_special_storage_policy.h

Issue 442383002: Move storage-related files from webkit/ to new top-level directory storage/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
11 #include "base/synchronization/lock.h" 11 #include "base/synchronization/lock.h"
12 #include "extensions/common/extension_set.h" 12 #include "extensions/common/extension_set.h"
13 #include "url/gurl.h" 13 #include "url/gurl.h"
14 #include "webkit/browser/quota/special_storage_policy.h" 14 #include "storage/browser/quota/special_storage_policy.h"
15 15
16 class CookieSettings; 16 class CookieSettings;
17 17
18 namespace extensions { 18 namespace extensions {
19 class Extension; 19 class Extension;
20 } 20 }
21 21
22 // Special rights are granted to 'extensions' and 'applications'. The 22 // Special rights are granted to 'extensions' and 'applications'. The
23 // storage subsystems and the browsing data remover query this interface 23 // storage subsystems and the browsing data remover query this interface
24 // to determine which origins have these rights. 24 // to determine which origins have these rights.
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 base::Lock lock_; // Synchronize all access to the collections. 81 base::Lock lock_; // Synchronize all access to the collections.
82 SpecialCollection protected_apps_; 82 SpecialCollection protected_apps_;
83 SpecialCollection installed_apps_; 83 SpecialCollection installed_apps_;
84 SpecialCollection unlimited_extensions_; 84 SpecialCollection unlimited_extensions_;
85 SpecialCollection file_handler_extensions_; 85 SpecialCollection file_handler_extensions_;
86 SpecialCollection isolated_extensions_; 86 SpecialCollection isolated_extensions_;
87 scoped_refptr<CookieSettings> cookie_settings_; 87 scoped_refptr<CookieSettings> cookie_settings_;
88 }; 88 };
89 89
90 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SPECIAL_STORAGE_POLICY_H_ 90 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SPECIAL_STORAGE_POLICY_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_service_unittest.cc ('k') | chrome/browser/extensions/extension_storage_monitor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698