Index: components/zip/zip.h |
diff --git a/components/zip/zip.h b/components/zip/zip.h |
deleted file mode 100644 |
index a997c9cbaf1fb4c26a7b58785fb1e2dddaee7381..0000000000000000000000000000000000000000 |
--- a/components/zip/zip.h |
+++ /dev/null |
@@ -1,44 +0,0 @@ |
-// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#ifndef COMPONENTS_ZIP_ZIP_H_ |
-#define COMPONENTS_ZIP_ZIP_H_ |
- |
-#include "base/callback.h" |
-#include "base/files/file_path.h" |
- |
-namespace zip { |
- |
-// Zip the contents of src_dir into dest_file. src_path must be a directory. |
-// An entry will *not* be created in the zip for the root folder -- children |
-// of src_dir will be at the root level of the created zip. For each file in |
-// src_dir, include it only if the callback |filter_cb| returns true. Otherwise |
-// omit it. |
-typedef base::Callback<bool(const base::FilePath&)> FilterCallback; |
-bool ZipWithFilterCallback(const base::FilePath& src_dir, |
- const base::FilePath& dest_file, |
- const FilterCallback& filter_cb); |
- |
-// Convenience method for callers who don't need to set up the filter callback. |
-// If |include_hidden_files| is true, files starting with "." are included. |
-// Otherwise they are omitted. |
-bool Zip(const base::FilePath& src_dir, const base::FilePath& dest_file, |
- bool include_hidden_files); |
- |
-#if defined(OS_POSIX) |
-// Zips files listed in |src_relative_paths| to destination specified by file |
-// descriptor |dest_fd|. The paths listed in |src_relative_paths| are relative |
-// to the |src_dir| and will be used as the file names in the created zip file. |
-// All source paths must be under |src_dir| in the file system hierarchy. |
-bool ZipFiles(const base::FilePath& src_dir, |
- const std::vector<base::FilePath>& src_relative_paths, |
- int dest_fd); |
-#endif // defined(OS_POSIX) |
- |
-// Unzip the contents of zip_file into dest_dir. |
-bool Unzip(const base::FilePath& zip_file, const base::FilePath& dest_dir); |
- |
-} // namespace zip |
- |
-#endif // COMPONENTS_ZIP_ZIP_H_ |