mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
20 lines
696 B
Plaintext
20 lines
696 B
Plaintext
// Copyright 2017 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.
|
|
|
|
// Zip file creator provided by the utility process and exposed by mojo
|
|
// policy control to the chrome browser process on OS_CHROMEOS.
|
|
|
|
module chrome.mojom;
|
|
|
|
import "mojo/common/file.mojom";
|
|
import "mojo/common/file_path.mojom";
|
|
|
|
interface ZipFileCreator {
|
|
// OS_CHROMEOS: Create a |zip_file| from a list of source files.
|
|
CreateZipFile(mojo.common.mojom.FilePath source_dir,
|
|
array<mojo.common.mojom.FilePath> source_relative_paths,
|
|
mojo.common.mojom.File zip_file)
|
|
=> (bool success);
|
|
};
|