blob: b9ea493d23adcaf43eb8ad90134cf8663e60468b [file] [log] [blame]
Kevin Marshallf35fa5f2018-01-29 19:24:421// 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
Kevin Marshallec64321f2018-05-22 03:17:4118 // Path to the directory which contains application user data.
19 DIR_APP_DATA,
20
Kevin Marshallf35fa5f2018-01-29 19:24:4221 PATH_FUCHSIA_END,
22};
23
Kevin Marshallf35fa5f2018-01-29 19:24:4224} // namespace base
25
26#endif // BASE_BASE_PATHS_FUCHSIA_H_