Xiaochu Liu | 8964a4a | 2019-01-24 16:16:16 -0800 | [diff] [blame] | 1 | // Copyright 2019 The Chromium OS Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef SYSTEM_API_CONSTANTS_IMAGELOADER_H_ |
| 6 | #define SYSTEM_API_CONSTANTS_IMAGELOADER_H_ |
| 7 | |
| 8 | namespace imageloader { |
| 9 | |
| 10 | // The root path of all DLC module manifests. |
| 11 | const char kDlcManifestRootpath[] = "/opt/google/dlc/"; |
| 12 | |
| 13 | // The root path of all DLC module images. |
Xiaochu Liu | 4ed1ea6 | 2019-04-22 11:18:40 -0700 | [diff] [blame] | 14 | const char kDlcImageRootpath[] = "/var/cache/dlc/"; |
Xiaochu Liu | 8964a4a | 2019-01-24 16:16:16 -0800 | [diff] [blame] | 15 | |
Xiaochu Liu | 8964a4a | 2019-01-24 16:16:16 -0800 | [diff] [blame] | 16 | } // namespace imageloader |
| 17 | |
| 18 | #endif // SYSTEM_API_CONSTANTS_IMAGELOADER_H_ |