electron/atom/browser/atom_paths.h

47 строки
1.1 KiB
C
Исходник Обычный вид История

2015-01-19 03:59:57 +03:00
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
2018-10-24 13:49:10 +03:00
#ifndef ATOM_BROWSER_ATOM_PATHS_H_
#define ATOM_BROWSER_ATOM_PATHS_H_
#include "base/base_paths.h"
2015-01-19 03:59:57 +03:00
2015-01-19 04:19:25 +03:00
#if defined(OS_WIN)
#include "base/base_paths_win.h"
#elif defined(OS_MACOSX)
#include "base/base_paths_mac.h"
#endif
#if defined(OS_POSIX)
#include "base/base_paths_posix.h"
#endif
2018-10-24 13:49:10 +03:00
namespace atom {
2015-01-19 03:59:57 +03:00
enum {
2016-01-11 05:40:20 +03:00
PATH_START = 11000,
2015-01-19 03:59:57 +03:00
DIR_USER_DATA = PATH_START, // Directory where user data can be written.
2018-04-18 04:46:27 +03:00
DIR_USER_CACHE, // Directory where user cache can be written.
DIR_APP_LOGS, // Directory where app logs live
2015-01-19 03:59:57 +03:00
2015-01-19 04:19:25 +03:00
#if defined(OS_LINUX)
DIR_APP_DATA, // Application Data directory under the user profile.
#else
DIR_APP_DATA = base::DIR_APP_DATA,
#endif
#if defined(OS_POSIX)
DIR_CACHE = base::DIR_CACHE, // Directory where to put cache data.
#else
DIR_CACHE = base::DIR_APP_DATA,
#endif
2015-01-19 03:59:57 +03:00
PATH_END
};
2018-10-24 13:49:10 +03:00
} // namespace atom
2015-01-19 03:59:57 +03:00
2018-10-24 13:49:10 +03:00
#endif // ATOM_BROWSER_ATOM_PATHS_H_