OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CONTENT_PUBLIC_BROWSER_DOM_STORAGE_CONTEXT_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_DOM_STORAGE_CONTEXT_H_ |
6 #define CONTENT_PUBLIC_BROWSER_DOM_STORAGE_CONTEXT_H_ | 6 #define CONTENT_PUBLIC_BROWSER_DOM_STORAGE_CONTEXT_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/callback.h" | 11 #include "base/callback.h" |
12 #include "base/string16.h" | 12 #include "base/string16.h" |
13 #include "content/common/content_export.h" | 13 #include "content/common/content_export.h" |
14 | 14 |
15 class FilePath; | 15 class FilePath; |
16 | 16 |
17 namespace base { | 17 namespace base { |
18 class Time; | 18 class Time; |
19 } | 19 } |
20 | 20 |
21 namespace content { | 21 namespace content { |
22 | 22 |
23 class BrowserContext; | 23 class BrowserContext; |
24 class SessionStorageNamespace; | |
24 | 25 |
25 // Represents the per-BrowserContext Local Storage data. | 26 // Represents the per-BrowserContext Local Storage data. |
26 class DOMStorageContext { | 27 class DOMStorageContext { |
27 public: | 28 public: |
28 typedef base::Callback<void(const std::vector<FilePath>&)> | 29 typedef base::Callback<void(const std::vector<FilePath>&)> |
29 GetAllStorageFilesCallback; | 30 GetAllStorageFilesCallback; |
30 | 31 |
31 // Returns all the file paths of local storage files to the given callback. | 32 // Returns all the file paths of local storage files to the given callback. |
32 virtual void GetAllStorageFiles( | 33 virtual void GetAllStorageFiles( |
33 const GetAllStorageFilesCallback& callback) = 0; | 34 const GetAllStorageFilesCallback& callback) = 0; |
34 | 35 |
35 // Get the file name of the local storage file for the given origin. | 36 // Get the file name of the local storage file for the given origin. |
36 virtual FilePath GetFilePath(const string16& origin_id) const = 0; | 37 virtual FilePath GetFilePath(const string16& origin_id) const = 0; |
37 | 38 |
38 // Deletes the local storage file for the given origin. | 39 // Deletes the local storage file for the given origin. |
39 virtual void DeleteForOrigin(const string16& origin_id) = 0; | 40 virtual void DeleteForOrigin(const string16& origin_id) = 0; |
40 | 41 |
41 // Deletes a single local storage file. | 42 // Deletes a single local storage file. |
42 virtual void DeleteLocalStorageFile(const FilePath& file_path) = 0; | 43 virtual void DeleteLocalStorageFile(const FilePath& file_path) = 0; |
43 | 44 |
44 // Delete any local storage files that have been touched since the cutoff | 45 // Delete any local storage files that have been touched since the cutoff |
45 // date that's supplied. Protected origins, per the SpecialStoragePolicy, | 46 // date that's supplied. Protected origins, per the SpecialStoragePolicy, |
46 // are not deleted by this method. | 47 // are not deleted by this method. |
47 virtual void DeleteDataModifiedSince(const base::Time& cutoff) = 0; | 48 virtual void DeleteDataModifiedSince(const base::Time& cutoff) = 0; |
48 | 49 |
50 // Called when the sessionStorage for |namespace_id| can safely be deleted | |
51 // (it won't be used by session restore). | |
52 virtual void DoomSessionStorage(int64 namespace_id) = 0; | |
michaeln
2012/06/05 01:41:07
Do you know where the callsite for this method sho
marja
2012/06/06 13:37:10
Atm the DoomSessionStorage is called by SessionSer
| |
53 | |
54 virtual SessionStorageNamespace* CreateSessionStorage( | |
michaeln
2012/06/05 01:41:07
Probably should have the return value be of type s
marja
2012/06/06 13:37:10
Done. Changed the name to RecreateSessionStorage a
| |
55 const std::string& persistent_id) = 0; | |
56 | |
49 protected: | 57 protected: |
50 virtual ~DOMStorageContext() {} | 58 virtual ~DOMStorageContext() {} |
51 }; | 59 }; |
52 | 60 |
53 } // namespace content | 61 } // namespace content |
54 | 62 |
55 #endif // CONTENT_PUBLIC_BROWSER_DOM_STORAGE_CONTEXT_H_ | 63 #endif // CONTENT_PUBLIC_BROWSER_DOM_STORAGE_CONTEXT_H_ |
OLD | NEW |