| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 | 10 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 // this when a temporary file or directory will | 35 // this when a temporary file or directory will |
| 36 // be moved into the profile, to avoid issues | 36 // be moved into the profile, to avoid issues |
| 37 // moving across volumes. See crbug.com/13044 . | 37 // moving across volumes. See crbug.com/13044 . |
| 38 DIR_INTERNAL_PLUGINS, // Directory where internal plugins reside. | 38 DIR_INTERNAL_PLUGINS, // Directory where internal plugins reside. |
| 39 #if !defined(OS_MACOSX) && defined(OS_POSIX) | 39 #if !defined(OS_MACOSX) && defined(OS_POSIX) |
| 40 DIR_POLICY_FILES, // Directory for system-wide read-only | 40 DIR_POLICY_FILES, // Directory for system-wide read-only |
| 41 // policy files that allow sys-admins | 41 // policy files that allow sys-admins |
| 42 // to set policies for chrome. This directory | 42 // to set policies for chrome. This directory |
| 43 // contains subdirectories. | 43 // contains subdirectories. |
| 44 #endif | 44 #endif |
| 45 #if defined(OS_MACOSX) |
| 46 DIR_MANAGED_PREFS, // Directory that stores the managed prefs plist |
| 47 // files for the current user. |
| 48 #endif |
| 45 FILE_RESOURCE_MODULE, // Full path and filename of the module that | 49 FILE_RESOURCE_MODULE, // Full path and filename of the module that |
| 46 // contains embedded resources (version, | 50 // contains embedded resources (version, |
| 47 // strings, images, etc.). | 51 // strings, images, etc.). |
| 48 FILE_LOCAL_STATE, // Path and filename to the file in which | 52 FILE_LOCAL_STATE, // Path and filename to the file in which |
| 49 // machine/installation-specific state is saved. | 53 // machine/installation-specific state is saved. |
| 50 FILE_RECORDED_SCRIPT, // Full path to the script.log file that | 54 FILE_RECORDED_SCRIPT, // Full path to the script.log file that |
| 51 // contains recorded browser events for | 55 // contains recorded browser events for |
| 52 // playback. | 56 // playback. |
| 53 FILE_GEARS_PLUGIN, // Full path to the gears.dll plugin file. | 57 FILE_GEARS_PLUGIN, // Full path to the gears.dll plugin file. |
| 54 FILE_FLASH_PLUGIN, // Full path to the internal Flash plugin file. | 58 FILE_FLASH_PLUGIN, // Full path to the internal Flash plugin file. |
| (...skipping 17 matching lines...) Expand all Loading... |
| 72 | 76 |
| 73 PATH_END | 77 PATH_END |
| 74 }; | 78 }; |
| 75 | 79 |
| 76 // Call once to register the provider for the path keys defined above. | 80 // Call once to register the provider for the path keys defined above. |
| 77 void RegisterPathProvider(); | 81 void RegisterPathProvider(); |
| 78 | 82 |
| 79 } // namespace chrome | 83 } // namespace chrome |
| 80 | 84 |
| 81 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 85 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
| OLD | NEW |