[email protected] | 9759ffc | 2011-04-25 18:03:12 | [diff] [blame^] | 1 | // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
license.bot | bf09a50 | 2008-08-24 00:55:55 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
[email protected] | ac510e1 | 2008-08-05 19:46:31 | [diff] [blame] | 4 | |
| 5 | #ifndef BASE_BASE_PATHS_WIN_H__ |
| 6 | #define BASE_BASE_PATHS_WIN_H__ |
[email protected] | 32b76ef | 2010-07-26 23:08:24 | [diff] [blame] | 7 | #pragma once |
[email protected] | ac510e1 | 2008-08-05 19:46:31 | [diff] [blame] | 8 | |
[email protected] | 52a261f | 2009-03-03 15:01:12 | [diff] [blame] | 9 | // 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] | ac510e1 | 2008-08-05 19:46:31 | [diff] [blame] | 11 | // directories and files. |
| 12 | |
| 13 | namespace base { |
| 14 | |
| 15 | enum { |
| 16 | PATH_WIN_START = 100, |
| 17 | |
[email protected] | ac510e1 | 2008-08-05 19:46:31 | [diff] [blame] | 18 | DIR_WINDOWS, // Windows directory, usually "c:\windows" |
| 19 | DIR_SYSTEM, // Usually c:\windows\system32" |
[email protected] | 9759ffc | 2011-04-25 18:03:12 | [diff] [blame^] | 20 | DIR_PROGRAM_FILES, // Usually c:\program files |
| 21 | DIR_PROGRAM_FILESX86, // Usually c:\program files or c:\program files (x86) |
[email protected] | ac510e1 | 2008-08-05 19:46:31 | [diff] [blame] | 22 | |
| 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] | 20c0192 | 2010-02-01 18:53:54 | [diff] [blame] | 28 | DIR_APP_DATA, // Application Data directory under the user profile. |
| 29 | DIR_PROFILE, // Usually "C:\Documents and settings\<user>. |
[email protected] | ac510e1 | 2008-08-05 19:46:31 | [diff] [blame] | 30 | 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] | ac510e1 | 2008-08-05 19:46:31 | [diff] [blame] | 33 | PATH_WIN_END |
| 34 | }; |
| 35 | |
| 36 | } // namespace base |
| 37 | |
| 38 | #endif // BASE_BASE_PATHS_WIN_H__ |