Fix Win8 metro startup crash from window switcher button
[chromium-blink-merge.git] / webkit / fileapi / directory_entry.h
blob205303848b47a1871f3397b466fe6db8c0893af5
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"
12 namespace fileapi {
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;
24 #endif // WEBKIT_FILEAPI_DIRECTORY_ENTRY_H_