| 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_
|
|
|