Amin Hassani | fd40bd9 | 2018-09-21 11:03:52 -0700 | [diff] [blame^] | 1 | // Copyright 2018 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 OOBE_CONFIG_UTILS_H_ | ||||
6 | #define OOBE_CONFIG_UTILS_H_ | ||||
7 | |||||
8 | #include <string> | ||||
9 | #include <vector> | ||||
10 | |||||
11 | namespace oobe_config { | ||||
12 | |||||
13 | int RunCommand(const std::vector<std::string>& command); | ||||
14 | |||||
15 | } // namespace oobe_config | ||||
16 | |||||
17 | #endif // OOBE_CONFIG_UTILS_H_ |