blob: c54e9c9c4c6e5652db7dcf7a09f17a6329410fea [file] [log] [blame]
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/browsing_data/browsing_data_file_system_util.h"
#include "extensions/buildflags/buildflags.h"
namespace browsing_data_file_system_util {
std::vector<storage::FileSystemType> GetAdditionalFileSystemTypes() {
#if BUILDFLAG(ENABLE_EXTENSIONS)
return {storage::kFileSystemTypeSyncable};
#else
return {};
#endif
}
} // namespace browsing_data_file_system_util