blob: 3992d62469b48d55364f2b13e5ce0d28fda1f40a [file] [log] [blame]
license.botf003cfe2008-08-24 09:55:55 +09001// Copyright (c) 2006-2008 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.
initial.commit3f4a7322008-07-27 06:49:38 +09004
erikkay@google.com9fc57d02008-08-09 05:16:08 +09005#ifndef BASE_BASE_PATHS_H_
6#define BASE_BASE_PATHS_H_
initial.commit3f4a7322008-07-27 06:49:38 +09007
8// This file declares path keys for the base module. These can be used with
9// the PathService to access various special directories and files.
10
erikkay@google.comc7980ee2008-08-06 04:46:31 +090011#include "base/basictypes.h"
erikkay@google.com9fc57d02008-08-09 05:16:08 +090012#if defined(OS_WIN)
erikkay@google.comc7980ee2008-08-06 04:46:31 +090013#include "base/base_paths_win.h"
erikkay@google.com9fc57d02008-08-09 05:16:08 +090014#elif defined(OS_MACOSX)
15#include "base/base_paths_mac.h"
evanm@google.come41d3b32008-08-15 10:04:11 +090016#elif defined(OS_LINUX)
17#include "base/base_paths_linux.h"
erikkay@google.comc7980ee2008-08-06 04:46:31 +090018#endif
19
initial.commit3f4a7322008-07-27 06:49:38 +090020namespace base {
21
22enum {
23 PATH_START = 0,
24
25 DIR_CURRENT, // current directory
26 DIR_EXE, // directory containing FILE_EXE
27 DIR_MODULE, // directory containing FILE_MODULE
initial.commit3f4a7322008-07-27 06:49:38 +090028 DIR_TEMP, // temporary directory
initial.commit3f4a7322008-07-27 06:49:38 +090029 PATH_END
30};
31
32} // namespace base
33
erikkay@google.com9fc57d02008-08-09 05:16:08 +090034#endif // BASE_BASE_PATHS_H_
license.botf003cfe2008-08-24 09:55:55 +090035