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

Unified Diff: content/public/browser/indexed_db_context.h

Issue 13954002: Refactor IndexedDBInfo out of browsingdata (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix cocoa unit tests Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/content_browser.gypi ('k') | content/public/browser/indexed_db_info.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/indexed_db_context.h
diff --git a/content/public/browser/indexed_db_context.h b/content/public/browser/indexed_db_context.h
index 9d87444f09209a2d7c847b8997c0a1db7b85e996..ce3c2c67fa14d9e7640f32a4abd96a38b83c0661 100644
--- a/content/public/browser/indexed_db_context.h
+++ b/content/public/browser/indexed_db_context.h
@@ -8,14 +8,10 @@
#include <vector>
#include "base/basictypes.h"
+#include "base/files/file_path.h"
#include "base/memory/ref_counted.h"
#include "content/common/content_export.h"
-
-class GURL;
-
-namespace base {
-class Time;
-}
+#include "content/public/browser/indexed_db_info.h"
namespace content {
@@ -25,6 +21,7 @@ class IndexedDBContext : public base::RefCountedThreadSafe<IndexedDBContext> {
public:
// Methods used in response to QuotaManager requests.
virtual std::vector<GURL> GetAllOrigins() = 0;
+ virtual std::vector<IndexedDBInfo> GetAllOriginsInfo() = 0;
virtual int64 GetOriginDiskUsage(const GURL& origin_url) = 0;
virtual base::Time GetOriginLastModified(const GURL& origin_url) = 0;
« no previous file with comments | « content/content_browser.gypi ('k') | content/public/browser/indexed_db_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698