Chromium Code Reviews| 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..36e51ce755b60881874c1d9fc716b8bc763faa67 100644 |
| --- a/content/public/browser/indexed_db_context.h |
| +++ b/content/public/browser/indexed_db_context.h |
| @@ -8,14 +8,12 @@ |
| #include <vector> |
| #include "base/basictypes.h" |
| +#include "base/files/file_path.h" |
|
jam
2013/04/11 18:19:26
nit: don't need to add all these headers now
|
| #include "base/memory/ref_counted.h" |
| +#include "base/time.h" |
| #include "content/common/content_export.h" |
| - |
| -class GURL; |
| - |
| -namespace base { |
| -class Time; |
| -} |
| +#include "content/public/browser/indexed_db_info.h" |
| +#include "googleurl/src/gurl.h" |
| namespace content { |
| @@ -23,8 +21,10 @@ namespace content { |
| // Call these methods only on the WebKit thread. |
| 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; |