ipc/chromium/src/base/base_paths_win.h

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
michael@0 2 // Use of this source code is governed by a BSD-style license that can be
michael@0 3 // found in the LICENSE file.
michael@0 4
michael@0 5 #ifndef BASE_BASE_PATHS_WIN_H__
michael@0 6 #define BASE_BASE_PATHS_WIN_H__
michael@0 7
michael@0 8 // This file declares windows-specific path keys for the base module.
michael@0 9 // These can be used with the PathService to access various special
michael@0 10 // directories and files.
michael@0 11
michael@0 12 namespace base {
michael@0 13
michael@0 14 enum {
michael@0 15 PATH_WIN_START = 100,
michael@0 16
michael@0 17 FILE_EXE, // path and filename of the current executable
michael@0 18 FILE_MODULE, // path and filename of the module containing the code for the
michael@0 19 // PathService (which could differ from FILE_EXE if the
michael@0 20 // PathService were compiled into a DLL, for example)
michael@0 21 DIR_WINDOWS, // Windows directory, usually "c:\windows"
michael@0 22 DIR_SYSTEM, // Usually c:\windows\system32"
michael@0 23 DIR_PROGRAM_FILES, // Usually c:\program files
michael@0 24
michael@0 25 DIR_IE_INTERNET_CACHE, // Temporary Internet Files directory.
michael@0 26 DIR_COMMON_START_MENU, // Usually "C:\Documents and Settings\All Users\
michael@0 27 // Start Menu\Programs"
michael@0 28 DIR_START_MENU, // Usually "C:\Documents and Settings\<user>\
michael@0 29 // Start Menu\Programs"
michael@0 30 DIR_APP_DATA, // Application Data directory under the user profile.
michael@0 31 DIR_LOCAL_APP_DATA_LOW, // Local AppData directory for low integrity level.
michael@0 32 DIR_LOCAL_APP_DATA, // "Local Settings\Application Data" directory under the
michael@0 33 // user profile.
michael@0 34 DIR_SOURCE_ROOT, // Returns the root of the source tree. This key is useful
michael@0 35 // for tests that need to locate various resources. It
michael@0 36 // should not be used outside of test code.
michael@0 37 PATH_WIN_END
michael@0 38 };
michael@0 39
michael@0 40 } // namespace base
michael@0 41
michael@0 42 #endif // BASE_BASE_PATHS_WIN_H__

mercurial