[M85 Dev][EFL] Fix crashes at webview launch
[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 user data.
19   DIR_APP_DATA,
20
21   PATH_FUCHSIA_END,
22 };
23
24 }  // namespace base
25
26 #endif  // BASE_BASE_PATHS_FUCHSIA_H_