blob: acdd4182aceed7588c8f5a6d2ac516c9dc4cc05b [file] [log] [blame]
Andrew de los Reyesb4025e62010-02-23 17:47:03 -08001// 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
12namespace chromeos_update_engine {
13
14namespace extent_mapper {
15
16bool 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__