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 namespace base { | 10 namespace base { |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 FILE_EFFECTS_PLUGIN, // Full path to the Effects Pepper plugin file. | 95 FILE_EFFECTS_PLUGIN, // Full path to the Effects Pepper plugin file. |
96 FILE_GTALK_PLUGIN, // Full path to the GTalk Pepper plugin file. | 96 FILE_GTALK_PLUGIN, // Full path to the GTalk Pepper plugin file. |
97 DIR_COMPONENT_CLD2, // Directory that contains component-updated | 97 DIR_COMPONENT_CLD2, // Directory that contains component-updated |
98 // Compact Language Detector files | 98 // Compact Language Detector files |
99 DIR_COMPONENT_WIDEVINE_CDM, // Directory that contains component-updated | 99 DIR_COMPONENT_WIDEVINE_CDM, // Directory that contains component-updated |
100 // Widevine CDM files. | 100 // Widevine CDM files. |
101 FILE_WIDEVINE_CDM_ADAPTER, // Full path to the Widevine CDM adapter file. | 101 FILE_WIDEVINE_CDM_ADAPTER, // Full path to the Widevine CDM adapter file. |
102 FILE_RESOURCES_PACK, // Full path to the .pak file containing | 102 FILE_RESOURCES_PACK, // Full path to the .pak file containing |
103 // binary data (e.g., html files and images | 103 // binary data (e.g., html files and images |
104 // used by internal pages). | 104 // used by internal pages). |
| 105 DIR_RECOVERY_COMPONENT_INSTALLER, // Full path where Recovery component |
| 106 // installer is saved for retry. |
105 DIR_RESOURCES_EXTENSION, // Full path to extension resources. | 107 DIR_RESOURCES_EXTENSION, // Full path to extension resources. |
106 DIR_RECOVERY_BASE, // Full path to the dir for Recovery component. | 108 DIR_RECOVERY_BASE, // Full path to the dir for Recovery component. |
107 #if defined(OS_CHROMEOS) | 109 #if defined(OS_CHROMEOS) |
108 DIR_CHROMEOS_WALLPAPERS, // Directory where downloaded chromeos | 110 DIR_CHROMEOS_WALLPAPERS, // Directory where downloaded chromeos |
109 // wallpapers reside. | 111 // wallpapers reside. |
110 DIR_CHROMEOS_WALLPAPER_THUMBNAILS, // Directory where downloaded chromeos | 112 DIR_CHROMEOS_WALLPAPER_THUMBNAILS, // Directory where downloaded chromeos |
111 // wallpaper thumbnails reside. | 113 // wallpaper thumbnails reside. |
112 DIR_CHROMEOS_CUSTOM_WALLPAPERS, // Directory where custom wallpapers | 114 DIR_CHROMEOS_CUSTOM_WALLPAPERS, // Directory where custom wallpapers |
113 // reside. | 115 // reside. |
114 #endif | 116 #endif |
(...skipping 22 matching lines...) Expand all Loading... |
137 // Call once to register the provider for the path keys defined above. | 139 // Call once to register the provider for the path keys defined above. |
138 void RegisterPathProvider(); | 140 void RegisterPathProvider(); |
139 | 141 |
140 // Get or set the invalid user data dir that was originally specified. | 142 // Get or set the invalid user data dir that was originally specified. |
141 void SetInvalidSpecifiedUserDataDir(const base::FilePath& user_data_dir); | 143 void SetInvalidSpecifiedUserDataDir(const base::FilePath& user_data_dir); |
142 const base::FilePath& GetInvalidSpecifiedUserDataDir(); | 144 const base::FilePath& GetInvalidSpecifiedUserDataDir(); |
143 | 145 |
144 } // namespace chrome | 146 } // namespace chrome |
145 | 147 |
146 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 148 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
OLD | NEW |