OLD | NEW |
1 // Copyright (c) 2006-2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_COMMON_CHROME_PATHS_H__ | 5 #ifndef CHROME_COMMON_CHROME_PATHS_H__ |
6 #define CHROME_COMMON_CHROME_PATHS_H__ | 6 #define CHROME_COMMON_CHROME_PATHS_H__ |
7 | 7 |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 | 9 |
10 // This file declares path keys for the chrome module. These can be used with | 10 // This file declares path keys for the chrome module. These can be used with |
(...skipping 14 matching lines...) Expand all Loading... |
25 DIR_SHARED_RESOURCES, // Directory containing js and css files used | 25 DIR_SHARED_RESOURCES, // Directory containing js and css files used |
26 // by DOMUI and component extensions. | 26 // by DOMUI and component extensions. |
27 DIR_BOOKMARK_MANAGER, // Directory containing the bookmark manager. | 27 DIR_BOOKMARK_MANAGER, // Directory containing the bookmark manager. |
28 DIR_INSPECTOR, // Directory where web inspector is located. | 28 DIR_INSPECTOR, // Directory where web inspector is located. |
29 DIR_NET_INTERNALS, // Directory where net internals is located. | 29 DIR_NET_INTERNALS, // Directory where net internals is located. |
30 DIR_APP_DICTIONARIES, // Directory where the global dictionaries are. | 30 DIR_APP_DICTIONARIES, // Directory where the global dictionaries are. |
31 DIR_USER_DOCUMENTS, // Directory for a user's "My Documents". | 31 DIR_USER_DOCUMENTS, // Directory for a user's "My Documents". |
32 DIR_DEFAULT_DOWNLOADS_SAFE, // Directory for a user's | 32 DIR_DEFAULT_DOWNLOADS_SAFE, // Directory for a user's |
33 // "My Documents/Downloads". | 33 // "My Documents/Downloads". |
34 DIR_DEFAULT_DOWNLOADS, // Directory for a user's downloads. | 34 DIR_DEFAULT_DOWNLOADS, // Directory for a user's downloads. |
| 35 DIR_USER_DATA_TEMP, // A temp directory within DIR_USER_DATA. Use |
| 36 // this when a temporary file or directory will |
| 37 // be moved into the profile, to avoid issues |
| 38 // moving across volumes. See crbug.com/13044 . |
35 FILE_RESOURCE_MODULE, // Full path and filename of the module that | 39 FILE_RESOURCE_MODULE, // Full path and filename of the module that |
36 // contains embedded resources (version, | 40 // contains embedded resources (version, |
37 // strings, images, etc.). | 41 // strings, images, etc.). |
38 FILE_LOCAL_STATE, // Path and filename to the file in which | 42 FILE_LOCAL_STATE, // Path and filename to the file in which |
39 // machine/installation-specific state is saved. | 43 // machine/installation-specific state is saved. |
40 FILE_RECORDED_SCRIPT, // Full path to the script.log file that | 44 FILE_RECORDED_SCRIPT, // Full path to the script.log file that |
41 // contains recorded browser events for | 45 // contains recorded browser events for |
42 // playback. | 46 // playback. |
43 FILE_GEARS_PLUGIN, // Full path to the gears.dll plugin file. | 47 FILE_GEARS_PLUGIN, // Full path to the gears.dll plugin file. |
44 FILE_FLASH_PLUGIN, // Full path to the internal Flash plugin file. | 48 FILE_FLASH_PLUGIN, // Full path to the internal Flash plugin file. |
(...skipping 14 matching lines...) Expand all Loading... |
59 | 63 |
60 PATH_END | 64 PATH_END |
61 }; | 65 }; |
62 | 66 |
63 // Call once to register the provider for the path keys defined above. | 67 // Call once to register the provider for the path keys defined above. |
64 void RegisterPathProvider(); | 68 void RegisterPathProvider(); |
65 | 69 |
66 } // namespace chrome | 70 } // namespace chrome |
67 | 71 |
68 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 72 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
OLD | NEW |