1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/security/sandbox/chromium/base/base_paths_win.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,51 @@ 1.4 +// Copyright (c) 2012 The Chromium Authors. All rights reserved. 1.5 +// Use of this source code is governed by a BSD-style license that can be 1.6 +// found in the LICENSE file. 1.7 + 1.8 +#ifndef BASE_BASE_PATHS_WIN_H__ 1.9 +#define BASE_BASE_PATHS_WIN_H__ 1.10 + 1.11 +// This file declares windows-specific path keys for the base module. 1.12 +// These can be used with the PathService to access various special 1.13 +// directories and files. 1.14 + 1.15 +namespace base { 1.16 + 1.17 +enum { 1.18 + PATH_WIN_START = 100, 1.19 + 1.20 + DIR_WINDOWS, // Windows directory, usually "c:\windows" 1.21 + DIR_SYSTEM, // Usually c:\windows\system32" 1.22 + DIR_PROGRAM_FILES, // Usually c:\program files 1.23 + DIR_PROGRAM_FILESX86, // Usually c:\program files or c:\program files (x86) 1.24 + 1.25 + DIR_IE_INTERNET_CACHE, // Temporary Internet Files directory. 1.26 + DIR_COMMON_START_MENU, // Usually "C:\Documents and Settings\All Users\ 1.27 + // Start Menu\Programs" 1.28 + DIR_START_MENU, // Usually "C:\Documents and Settings\<user>\ 1.29 + // Start Menu\Programs" 1.30 + DIR_APP_DATA, // Application Data directory under the user profile. 1.31 + DIR_PROFILE, // Usually "C:\Documents and settings\<user>. 1.32 + DIR_LOCAL_APP_DATA_LOW, // Local AppData directory for low integrity level. 1.33 + DIR_LOCAL_APP_DATA, // "Local Settings\Application Data" directory under 1.34 + // the user profile. 1.35 + DIR_COMMON_APP_DATA, // W2K, XP, W2K3: "C:\Documents and Settings\ 1.36 + // All Users\Application Data". 1.37 + // Vista, W2K8 and above: "C:\ProgramData". 1.38 + DIR_APP_SHORTCUTS, // Where tiles on the start screen are stored, only 1.39 + // for Windows 8. Maps to "Local\AppData\Microsoft\ 1.40 + // Windows\Application Shortcuts\". 1.41 + DIR_COMMON_DESKTOP, // Directory for the common desktop (visible 1.42 + // on all user's Desktop). 1.43 + DIR_USER_QUICK_LAUNCH, // Directory for the quick launch shortcuts. 1.44 + DIR_DEFAULT_USER_QUICK_LAUNCH, // Directory for the quick launch shortcuts 1.45 + // of the Default user. 1.46 + DIR_TASKBAR_PINS, // Directory for the shortcuts pinned to taskbar via 1.47 + // base::win::TaskbarPinShortcutLink(). 1.48 + 1.49 + PATH_WIN_END 1.50 +}; 1.51 + 1.52 +} // namespace base 1.53 + 1.54 +#endif // BASE_BASE_PATHS_WIN_H__