installer_util_test_common.h revision 5821806d5e7f356e8fa4b058a389a808ea183019
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
3// found in the LICENSE file.
4
5#ifndef CHROME_INSTALLER_UTIL_INSTALLER_UTIL_TEST_COMMON_H_
6#define CHROME_INSTALLER_UTIL_INSTALLER_UTIL_TEST_COMMON_H_
7
8class FilePath;
9
10namespace installer {
11
12namespace test {
13
14// Copies the hierarcy in |from| to |to|.
15// Keeps all file properties identical (creation time, etc.).
16bool CopyFileHierarchy(const FilePath& from, const FilePath& to);
17
18}  // namespace test
19
20}  // namespace installer
21
22#endif  // CHROME_INSTALLER_UTIL_INSTALLER_UTIL_TEST_COMMON_H_
23