blob: 02b1f49ba7e158abd079c890b90320ba5180843c [file] [log] [blame]
[email protected]9759ffc2011-04-25 18:03:121// Copyright (c) 2011 The Chromium Authors. All rights reserved.
license.botbf09a502008-08-24 00:55:552// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
[email protected]ac510e12008-08-05 19:46:314
5#ifndef BASE_BASE_PATHS_WIN_H__
6#define BASE_BASE_PATHS_WIN_H__
[email protected]32b76ef2010-07-26 23:08:247#pragma once
[email protected]ac510e12008-08-05 19:46:318
[email protected]52a261f2009-03-03 15:01:129// This file declares windows-specific path keys for the base module.
10// These can be used with the PathService to access various special
[email protected]ac510e12008-08-05 19:46:3111// directories and files.
12
13namespace base {
14
15enum {
16 PATH_WIN_START = 100,
17
[email protected]ac510e12008-08-05 19:46:3118 DIR_WINDOWS, // Windows directory, usually "c:\windows"
19 DIR_SYSTEM, // Usually c:\windows\system32"
[email protected]9759ffc2011-04-25 18:03:1220 DIR_PROGRAM_FILES, // Usually c:\program files
21 DIR_PROGRAM_FILESX86, // Usually c:\program files or c:\program files (x86)
[email protected]ac510e12008-08-05 19:46:3122
23 DIR_IE_INTERNET_CACHE, // Temporary Internet Files directory.
24 DIR_COMMON_START_MENU, // Usually "C:\Documents and Settings\All Users\
25 // Start Menu\Programs"
26 DIR_START_MENU, // Usually "C:\Documents and Settings\<user>\
27 // Start Menu\Programs"
[email protected]20c01922010-02-01 18:53:5428 DIR_APP_DATA, // Application Data directory under the user profile.
29 DIR_PROFILE, // Usually "C:\Documents and settings\<user>.
[email protected]ac510e12008-08-05 19:46:3130 DIR_LOCAL_APP_DATA_LOW, // Local AppData directory for low integrity level.
31 DIR_LOCAL_APP_DATA, // "Local Settings\Application Data" directory under the
32 // user profile.
[email protected]ac510e12008-08-05 19:46:3133 PATH_WIN_END
34};
35
36} // namespace base
37
38#endif // BASE_BASE_PATHS_WIN_H__