blob: 4f0fca97ad692e237d0e09062f87ececefe28713 [file] [log] [blame]
// Copyright 2014 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 "chrome/browser/chromeos/file_system_provider/provided_file_system_interface.h"
namespace chromeos {
namespace file_system_provider {
EntryMetadata::EntryMetadata() {}
EntryMetadata::~EntryMetadata() {
}
OpenedFile::OpenedFile(const base::FilePath& file_path, OpenFileMode mode)
: file_path(file_path), mode(mode) {}
OpenedFile::OpenedFile() : mode(OPEN_FILE_MODE_READ) {
}
OpenedFile::~OpenedFile() {
}
} // namespace file_system_provider
} // namespace chromeos