blob: 76813b469e70855978117e6e484e1e86d66493c9 [file] [log] [blame]
// Copyright 2020 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/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