Bumping manifests a=b2g-bump
[gecko.git] / xpcom / io / nsAppDirectoryServiceDefs.h
blob5bc87de83a426e0d92684ccb76f5e734e85edc2f
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef nsAppDirectoryServiceDefs_h___
8 #define nsAppDirectoryServiceDefs_h___
10 //========================================================================================
12 // Defines property names for directories available from standard nsIDirectoryServiceProviders.
13 // These keys are not guaranteed to exist because the nsIDirectoryServiceProviders which
14 // provide them are optional.
16 // Keys whose definition ends in "DIR" or "FILE" return a single nsIFile (or subclass).
17 // Keys whose definition ends in "LIST" return an nsISimpleEnumerator which enumerates a
18 // list of file objects.
20 // System and XPCOM level properties are defined in nsDirectoryServiceDefs.h.
22 //========================================================================================
25 // --------------------------------------------------------------------------------------
26 // Files and directories which exist on a per-product basis
27 // --------------------------------------------------------------------------------------
29 #define NS_APP_APPLICATION_REGISTRY_FILE "AppRegF"
30 #define NS_APP_APPLICATION_REGISTRY_DIR "AppRegD"
32 #define NS_APP_DEFAULTS_50_DIR "DefRt" // The root dir of all defaults dirs
33 #define NS_APP_PREF_DEFAULTS_50_DIR "PrfDef"
34 #define NS_APP_PROFILE_DEFAULTS_50_DIR "profDef" // The profile defaults of the "current"
35 // locale. Should be first choice.
36 #define NS_APP_PROFILE_DEFAULTS_NLOC_50_DIR "ProfDefNoLoc" // The profile defaults of the "default"
37 // installed locale. Second choice
38 // when above is not available.
40 #define NS_APP_USER_PROFILES_ROOT_DIR "DefProfRt" // The dir where user profile dirs live.
41 #define NS_APP_USER_PROFILES_LOCAL_ROOT_DIR "DefProfLRt" // The dir where user profile temp dirs live.
43 #define NS_APP_RES_DIR "ARes"
44 #define NS_APP_CHROME_DIR "AChrom"
45 #define NS_APP_PLUGINS_DIR "APlugns" // Deprecated - use NS_APP_PLUGINS_DIR_LIST
46 #define NS_APP_SEARCH_DIR "SrchPlugns"
48 #define NS_APP_CHROME_DIR_LIST "AChromDL"
49 #define NS_APP_PLUGINS_DIR_LIST "APluginsDL"
50 #define NS_APP_SEARCH_DIR_LIST "SrchPluginsDL"
52 // --------------------------------------------------------------------------------------
53 // Files and directories which exist on a per-profile basis
54 // These locations are typically provided by the profile mgr
55 // --------------------------------------------------------------------------------------
57 // In a shared profile environment, prefixing a profile-relative
58 // key with NS_SHARED returns a location that is shared by
59 // other users of the profile. Without this prefix, the consumer
60 // has exclusive access to this location.
62 #define NS_SHARED "SHARED"
64 #define NS_APP_PREFS_50_DIR "PrefD" // Directory which contains user prefs
65 #define NS_APP_PREFS_50_FILE "PrefF"
66 #define NS_METRO_APP_PREFS_50_FILE "MetroPrefF" // Metro browser prefs file
67 #define NS_APP_PREFS_DEFAULTS_DIR_LIST "PrefDL"
68 #define NS_EXT_PREFS_DEFAULTS_DIR_LIST "ExtPrefDL"
69 #define NS_APP_PREFS_OVERRIDE_DIR "PrefDOverride" // Directory for per-profile defaults
71 #define NS_APP_USER_PROFILE_50_DIR "ProfD"
72 #define NS_APP_USER_PROFILE_LOCAL_50_DIR "ProfLD"
74 #define NS_APP_USER_CHROME_DIR "UChrm"
75 #define NS_APP_USER_SEARCH_DIR "UsrSrchPlugns"
77 #define NS_APP_LOCALSTORE_50_FILE "LclSt"
78 #define NS_APP_USER_PANELS_50_FILE "UPnls"
79 #define NS_APP_USER_MIMETYPES_50_FILE "UMimTyp"
80 #define NS_APP_CACHE_PARENT_DIR "cachePDir"
82 #define NS_APP_BOOKMARKS_50_FILE "BMarks"
84 #define NS_APP_DOWNLOADS_50_FILE "DLoads"
86 #define NS_APP_SEARCH_50_FILE "SrchF"
88 #define NS_APP_INSTALL_CLEANUP_DIR "XPIClnupD" //location of xpicleanup.dat xpicleanup.exe
90 #define NS_APP_INDEXEDDB_PARENT_DIR "indexedDBPDir"
92 #define NS_APP_PERMISSION_PARENT_DIR "permissionDBPDir"
93 #endif