blob: c08695b3279b04069ac2bbf65384361de6fcfac2 [file] [log] [blame]
// Copyright (c) 2012 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.
#include <stdint.h>
#include "storage/browser/fileapi/file_system_file_util.h"
namespace storage {
base::FilePath FileSystemFileUtil::EmptyFileEnumerator::Next() {
return base::FilePath();
}
int64_t FileSystemFileUtil::EmptyFileEnumerator::Size() {
return 0;
}
base::Time FileSystemFileUtil::EmptyFileEnumerator::LastModifiedTime() {
return base::Time();
}
bool FileSystemFileUtil::EmptyFileEnumerator::IsDirectory() {
return false;
}
} // namespace storage