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

Unified Diff: content/public/browser/indexed_db_info.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/public/browser/indexed_db_context.h ('k') | content/public/browser/indexed_db_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/indexed_db_info.h
diff --git a/content/public/browser/indexed_db_info.h b/content/public/browser/indexed_db_info.h
new file mode 100644
index 0000000000000000000000000000000000000000..d5b2c4d4d7a81ec28b935de21f550017989a0fb9
--- /dev/null
+++ b/content/public/browser/indexed_db_info.h
@@ -0,0 +1,27 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_PUBLIC_BROWSER_INDEXED_DB_INFO_H_
+#define CONTENT_PUBLIC_BROWSER_INDEXED_DB_INFO_H_
+
+#include "base/time.h"
+#include "content/common/content_export.h"
+#include "googleurl/src/gurl.h"
+
+namespace content {
+
+class CONTENT_EXPORT IndexedDBInfo {
+ public:
+ IndexedDBInfo(const GURL& origin,
+ int64 size,
+ const base::Time& last_modified);
+
+ GURL origin;
+ int64 size;
+ base::Time last_modified;
+};
+
+} // namespace content
+
+#endif // CONTENT_PUBLIC_BROWSER_INDEXED_DB_INFO_H_
« no previous file with comments | « content/public/browser/indexed_db_context.h ('k') | content/public/browser/indexed_db_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698