1// Copyright 2014 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#include "chrome/browser/chromeos/file_system_provider/provided_file_system_interface.h"
6
7namespace chromeos {
8namespace file_system_provider {
9
10EntryMetadata::EntryMetadata() : is_directory(false), size(0) {
11}
12
13EntryMetadata::~EntryMetadata() {
14}
15
16}  // namespace file_system_provider
17}  // namespace chromeos
18