blob: 91a2c3317d9f5a8eca19e64cba59bb32e74a4103 [file] [log] [blame]
Xiaochu Liu8964a4a2019-01-24 16:16:16 -08001// 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
8namespace imageloader {
9
10// The root path of all DLC module manifests.
11const char kDlcManifestRootpath[] = "/opt/google/dlc/";
12
13// The root path of all DLC module images.
Xiaochu Liu4ed1ea62019-04-22 11:18:40 -070014const char kDlcImageRootpath[] = "/var/cache/dlc/";
Xiaochu Liu8964a4a2019-01-24 16:16:16 -080015
Xiaochu Liu8964a4a2019-01-24 16:16:16 -080016} // namespace imageloader
17
18#endif // SYSTEM_API_CONSTANTS_IMAGELOADER_H_