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

Side by Side Diff: content/public/browser/dom_storage_context.h

Issue 10449103: Update the DOMStorageContext public interface in the content layer to remove FilePaths and origin_i… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 6 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
« no previous file with comments | « content/browser/dom_storage/dom_storage_context_impl.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #include "webkit/dom_storage/dom_storage_context.h"
14 15
15 class FilePath; 16 class FilePath;
16 17
17 namespace base {
18 class Time;
19 }
20
21 namespace content { 18 namespace content {
22 19
23 class BrowserContext; 20 class BrowserContext;
24 21
25 // Represents the per-BrowserContext Local Storage data. 22 // Represents the per-BrowserContext Local Storage data.
26 class DOMStorageContext { 23 class DOMStorageContext {
27 public: 24 public:
25 typedef base::Callback<
26 void(const std::vector<dom_storage::DomStorageContext::UsageInfo>&)>
27 GetUsageInfoCallback;
28
29 virtual void GetUsageInfo(const GetUsageInfoCallback& callback) = 0;
jam 2012/06/01 21:58:37 nit: please add comments for both of these methods
30 virtual void DeleteOrigin(const GURL& origin) = 0;
31
32 // The stuff below is DEPRECATED.
28 typedef base::Callback<void(const std::vector<FilePath>&)> 33 typedef base::Callback<void(const std::vector<FilePath>&)>
29 GetAllStorageFilesCallback; 34 GetAllStorageFilesCallback;
30
31 // Returns all the file paths of local storage files to the given callback.
32 virtual void GetAllStorageFiles( 35 virtual void GetAllStorageFiles(
33 const GetAllStorageFilesCallback& callback) = 0; 36 const GetAllStorageFilesCallback& callback) = 0;
34
35 // 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 // Deletes the local storage file for the given origin.
39 virtual void DeleteForOrigin(const string16& origin_id) = 0; 38 virtual void DeleteForOrigin(const string16& origin_id) = 0;
40
41 // Deletes a single local storage file.
42 virtual void DeleteLocalStorageFile(const FilePath& file_path) = 0; 39 virtual void DeleteLocalStorageFile(const FilePath& file_path) = 0;
43
44 // Delete any local storage files that have been touched since the cutoff
45 // date that's supplied. Protected origins, per the SpecialStoragePolicy,
46 // are not deleted by this method.
47 virtual void DeleteDataModifiedSince(const base::Time& cutoff) = 0; 40 virtual void DeleteDataModifiedSince(const base::Time& cutoff) = 0;
48 41
49 protected: 42 protected:
50 virtual ~DOMStorageContext() {} 43 virtual ~DOMStorageContext() {}
51 }; 44 };
52 45
53 } // namespace content 46 } // namespace content
54 47
55 #endif // CONTENT_PUBLIC_BROWSER_DOM_STORAGE_CONTEXT_H_ 48 #endif // CONTENT_PUBLIC_BROWSER_DOM_STORAGE_CONTEXT_H_
OLDNEW
« no previous file with comments | « content/browser/dom_storage/dom_storage_context_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698