blob: b9ea493d23adcaf43eb8ad90134cf8663e60468b [file] [log] [blame]
Andrew Top0d1858f2019-05-15 22:01:47 -07001// 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
5#ifndef BASE_BASE_PATHS_FUCHSIA_H_
6#define BASE_BASE_PATHS_FUCHSIA_H_
7
8#include "base/base_export.h"
9#include "base/files/file_path.h"
10
11namespace base {
12
13// These can be used with the PathService to access various special
14// directories and files.
15enum {
16 PATH_FUCHSIA_START = 1200,
17
18 // Path to the directory which contains application user data.
19 DIR_APP_DATA,
20
21 PATH_FUCHSIA_END,
22};
23
24} // namespace base
25
26#endif // BASE_BASE_PATHS_FUCHSIA_H_