Upload upstream chromium 69.0.3497
[platform/framework/web/chromium-efl.git] / base / base_paths_fuchsia.h
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
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
11 namespace base {
12
13 // These can be used with the PathService to access various special
14 // directories and files.
15 enum {
16   PATH_FUCHSIA_START = 1200,
17
18   // Path to the directory which contains application libraries and resources.
19   DIR_FUCHSIA_RESOURCES,
20
21   // Path to the directory which contains application user data.
22   DIR_APP_DATA,
23
24   PATH_FUCHSIA_END,
25 };
26
27 // If running inside a package, returns a FilePath of the root path
28 // of the currently deployed package.
29 // Otherwise returns an empty FilePath.
30 BASE_EXPORT base::FilePath GetPackageRoot();
31
32 }  // namespace base
33
34 #endif  // BASE_BASE_PATHS_FUCHSIA_H_