base_paths_fuchsia.h 621 B

1234567891011121314151617181920212223242526
  1. // Copyright (c) 2018 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. #ifndef BASE_BASE_PATHS_FUCHSIA_H_
  5. #define BASE_BASE_PATHS_FUCHSIA_H_
  6. #include "base/base_export.h"
  7. #include "base/files/file_path.h"
  8. namespace base {
  9. // These can be used with the PathService to access various special
  10. // directories and files.
  11. enum {
  12. PATH_FUCHSIA_START = 1200,
  13. // Path to the directory which contains application user data.
  14. DIR_APP_DATA,
  15. PATH_FUCHSIA_END,
  16. };
  17. } // namespace base
  18. #endif // BASE_BASE_PATHS_FUCHSIA_H_