blob: c6d4d57bc61991fda2a127fc3b915d1e5e6eee66 [file] [log] [blame]
// Copyright 2020 The Chromium OS 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 <vector>
#include <base/files/file_path.h>
#ifndef VM_TOOLS_GARCON_XDG_UTIL_H_
#define VM_TOOLS_GARCON_XDG_UTIL_H_
namespace vm_tools {
namespace garcon {
namespace xdg {
// Gets the list of data-directories, based on the XDG base directory
// specification:
// https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
std::vector<base::FilePath> GetDataDirectories();
} // namespace xdg
} // namespace garcon
} // namespace vm_tools
#endif // VM_TOOLS_GARCON_XDG_UTIL_H_