| OLD | NEW |
| 1 // Copyright 2014 The Chromium OS Authors. All rights reserved. | 1 // Copyright 2014 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 // This file contains the common variables shared between the fake | 5 // This file contains the common variables shared between the fake |
| 6 // implementation of the libarchive API and the other test files. | 6 // implementation of the libarchive API and the other test files. |
| 7 | 7 |
| 8 #ifndef FAKE_LIB_ARCHIVE_H_ | 8 #ifndef FAKE_LIB_ARCHIVE_H_ |
| 9 #define FAKE_LIB_ARCHIVE_H_ | 9 #define FAKE_LIB_ARCHIVE_H_ |
| 10 | 10 |
| 11 #include <limits> | 11 #include <limits> |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 // Return value for archive_entry_filetype. | 65 // Return value for archive_entry_filetype. |
| 66 // By default it should be set to regular file. | 66 // By default it should be set to regular file. |
| 67 extern mode_t archive_entry_filetype_return_value; | 67 extern mode_t archive_entry_filetype_return_value; |
| 68 | 68 |
| 69 // Resets all variables to default values. | 69 // Resets all variables to default values. |
| 70 void ResetVariables(); | 70 void ResetVariables(); |
| 71 | 71 |
| 72 } // namespace fake_lib_archive_config | 72 } // namespace fake_lib_archive_config |
| 73 | 73 |
| 74 #endif // FAKE_LIB_ARCHIVE_H_ | 74 #endif // FAKE_LIB_ARCHIVE_H_ |
| OLD | NEW |