1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef WEBKIT_FILEAPI_DIRECTORY_ENTRY_H_
6 #define WEBKIT_FILEAPI_DIRECTORY_ENTRY_H_
8 #include "base/basictypes.h"
9 #include "base/files/file_path.h"
10 #include "base/time.h"
14 // Holds metadata for file or directory entry.
15 struct DirectoryEntry
{
16 base::FilePath::StringType name
;
19 base::Time last_modified_time
;
24 #endif // WEBKIT_FILEAPI_DIRECTORY_ENTRY_H_