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

Side by Side Diff: webkit/fileapi/directory_entry.h

Issue 15658004: Split FileAPI code for common|common_child|renderer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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.
4
5 #ifndef WEBKIT_FILEAPI_DIRECTORY_ENTRY_H_
6 #define WEBKIT_FILEAPI_DIRECTORY_ENTRY_H_
7
8 #include "base/basictypes.h"
9 #include "base/files/file_path.h"
10 #include "base/time.h"
11
12 namespace fileapi {
13
14 // Holds metadata for file or directory entry.
15 struct DirectoryEntry {
16 base::FilePath::StringType name;
17 bool is_directory;
18 int64 size;
19 base::Time last_modified_time;
20 };
21
22 }
23
24 #endif // WEBKIT_FILEAPI_DIRECTORY_ENTRY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698