OLD | NEW |
---|---|
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_INDEXED_DB_INFO_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_INDEXED_DB_INFO_H_ |
6 #define CONTENT_PUBLIC_BROWSER_INDEXED_DB_INFO_H_ | 6 #define CONTENT_PUBLIC_BROWSER_INDEXED_DB_INFO_H_ |
7 | 7 |
8 #include "base/files/file_path.h" | |
8 #include "base/time.h" | 9 #include "base/time.h" |
9 #include "googleurl/src/gurl.h" | 10 #include "googleurl/src/gurl.h" |
10 | 11 |
11 namespace content { | 12 namespace content { |
12 | 13 |
13 class IndexedDBInfo { | 14 class IndexedDBInfo { |
14 public: | 15 public: |
15 IndexedDBInfo(const GURL& origin, | 16 IndexedDBInfo(const GURL& origin, |
16 int64 size, | 17 int64 size, |
17 const base::Time& last_modified); | 18 const base::Time& last_modified, |
19 const base::FilePath& path); | |
18 | 20 |
19 GURL origin; | 21 GURL origin; |
20 int64 size; | 22 int64 size; |
21 base::Time last_modified; | 23 base::Time last_modified; |
24 base::FilePath path; | |
jsbell
2013/04/12 21:25:59
Nit: path_ (and what about the others? or am I mis
michaeln
2013/04/12 23:00:31
maybe just claim this is a struct instead of a cla
| |
22 }; | 25 }; |
23 | 26 |
24 } // namespace content | 27 } // namespace content |
25 | 28 |
26 #endif // CONTENT_PUBLIC_BROWSER_INDEXED_DB_INFO_H_ | 29 #endif // CONTENT_PUBLIC_BROWSER_INDEXED_DB_INFO_H_ |
OLD | NEW |