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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 FILE_NACL_PLUGIN, // Full path to the internal NaCl plugin file. | 90 FILE_NACL_PLUGIN, // Full path to the internal NaCl plugin file. |
91 DIR_PNACL_BASE, // Full path to the base dir for PNaCl. | 91 DIR_PNACL_BASE, // Full path to the base dir for PNaCl. |
92 DIR_PNACL_COMPONENT, // Full path to the latest PNaCl version | 92 DIR_PNACL_COMPONENT, // Full path to the latest PNaCl version |
93 // (subdir of DIR_PNACL_BASE). | 93 // (subdir of DIR_PNACL_BASE). |
94 DIR_COMPONENT_WIDEVINE_CDM, // Directory that contains component-updated | 94 DIR_COMPONENT_WIDEVINE_CDM, // Directory that contains component-updated |
95 // Widevine CDM files. | 95 // Widevine CDM files. |
96 FILE_WIDEVINE_CDM_ADAPTER, // Full path to the Widevine CDM adapter file. | 96 FILE_WIDEVINE_CDM_ADAPTER, // Full path to the Widevine CDM adapter file. |
97 FILE_RESOURCES_PACK, // Full path to the .pak file containing | 97 FILE_RESOURCES_PACK, // Full path to the .pak file containing |
98 // binary data (e.g., html files and images | 98 // binary data (e.g., html files and images |
99 // used by internal pages). | 99 // used by internal pages). |
100 DIR_RESOURCES_EXTENSION, // Full path to extension resources. | |
101 #if defined(OS_CHROMEOS) | 100 #if defined(OS_CHROMEOS) |
102 DIR_CHROMEOS_WALLPAPERS, // Directory where downloaded chromeos | 101 DIR_CHROMEOS_WALLPAPERS, // Directory where downloaded chromeos |
103 // wallpapers reside. | 102 // wallpapers reside. |
104 DIR_CHROMEOS_WALLPAPER_THUMBNAILS, // Directory where downloaded chromeos | 103 DIR_CHROMEOS_WALLPAPER_THUMBNAILS, // Directory where downloaded chromeos |
105 // wallpaper thumbnails reside. | 104 // wallpaper thumbnails reside. |
106 DIR_CHROMEOS_CUSTOM_WALLPAPERS, // Directory where custom wallpapers | 105 DIR_CHROMEOS_CUSTOM_WALLPAPERS, // Directory where custom wallpapers |
107 // reside. | 106 // reside. |
108 #endif | 107 #endif |
109 DIR_SUPERVISED_USERS_DEFAULT_APPS, // Directory where installer places .crx | 108 DIR_SUPERVISED_USERS_DEFAULT_APPS, // Directory where installer places .crx |
110 // files to be installed when managed user | 109 // files to be installed when managed user |
(...skipping 30 matching lines...) Expand all Loading... |
141 // Call once to register the provider for the path keys defined above. | 140 // Call once to register the provider for the path keys defined above. |
142 void RegisterPathProvider(); | 141 void RegisterPathProvider(); |
143 | 142 |
144 // Get or set the invalid user data dir that was originally specified. | 143 // Get or set the invalid user data dir that was originally specified. |
145 void SetInvalidSpecifiedUserDataDir(const base::FilePath& user_data_dir); | 144 void SetInvalidSpecifiedUserDataDir(const base::FilePath& user_data_dir); |
146 const base::FilePath& GetInvalidSpecifiedUserDataDir(); | 145 const base::FilePath& GetInvalidSpecifiedUserDataDir(); |
147 | 146 |
148 } // namespace chrome | 147 } // namespace chrome |
149 | 148 |
150 #endif // CHROME_COMMON_CHROME_PATHS_H__ | 149 #endif // CHROME_COMMON_CHROME_PATHS_H__ |
OLD | NEW |