Andrew de los Reyes | b4025e6 | 2010-02-23 17:47:03 -0800 | [diff] [blame^] | 1 | // Copyright (c) 2010 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 CHROMEOS_PLATFORM_UPDATE_ENGINE_EXTENT_MAPPER_H__ |
| 6 | #define CHROMEOS_PLATFORM_UPDATE_ENGINE_EXTENT_MAPPER_H__ |
| 7 | |
| 8 | #include <string> |
| 9 | #include <vector> |
| 10 | #include "update_engine/update_metadata.pb.h" |
| 11 | |
| 12 | namespace chromeos_update_engine { |
| 13 | |
| 14 | namespace extent_mapper { |
| 15 | |
| 16 | bool ExtentsForFileFibmap(const std::string& path, std::vector<Extent>* out); |
| 17 | |
| 18 | } // namespace extent_mapper |
| 19 | |
| 20 | } // namespace chromeos_update_engine |
| 21 | |
| 22 | #endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_EXTENT_MAPPER_H__ |