| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 // wallpapers reside. | 99 // wallpapers reside. |
| 100 DIR_CHROMEOS_WALLPAPER_THUMBNAILS, // Directory where downloaded chromeos | 100 DIR_CHROMEOS_WALLPAPER_THUMBNAILS, // Directory where downloaded chromeos |
| 101 // wallpaper thumbnails reside. | 101 // wallpaper thumbnails reside. |
| 102 DIR_CHROMEOS_CUSTOM_WALLPAPERS, // Directory where custom wallpapers | 102 DIR_CHROMEOS_CUSTOM_WALLPAPERS, // Directory where custom wallpapers |
| 103 // reside. | 103 // reside. |
| 104 #endif | 104 #endif |
| 105 DIR_MANAGED_USERS_DEFAULT_APPS, // Directory where installer places .crx | 105 DIR_MANAGED_USERS_DEFAULT_APPS, // Directory where installer places .crx |
| 106 // files to be installed when managed user | 106 // files to be installed when managed user |
| 107 // session starts. | 107 // session starts. |
| 108 | 108 |
| 109 FILE_LIBADDRESSINPUT_CACHE, // FIXME |
| 110 |
| 109 // Valid only in development environment; TODO(darin): move these | 111 // Valid only in development environment; TODO(darin): move these |
| 110 DIR_GEN_TEST_DATA, // Directory where generated test data resides. | 112 DIR_GEN_TEST_DATA, // Directory where generated test data resides. |
| 111 DIR_TEST_DATA, // Directory where unit test data resides. | 113 DIR_TEST_DATA, // Directory where unit test data resides. |
| 112 DIR_TEST_TOOLS, // Directory where unit test tools reside. | 114 DIR_TEST_TOOLS, // Directory where unit test tools reside. |
| 113 | 115 |
| 114 PATH_END | 116 PATH_END |
| 115 }; | 117 }; |
| 116 | 118 |
| 117 // Call once to register the provider for the path keys defined above. | 119 // Call once to register the provider for the path keys defined above. |
| 118 void RegisterPathProvider(); | 120 void RegisterPathProvider(); |
| 119 | 121 |
| 120 } // namespace chrome | 122 } // namespace chrome |
| 121 | 123 |
| 122 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 124 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
| OLD | NEW |